将已有项目提交到github/从github上pull到本地

之前都写过一篇github常用命令的文章,可是这些日子来,发现自己根本没掌握,真是很讨厌github这种提交方式,如果能够使用界面操作多好啊。

添加已有项目到github

新建repository,可以在github网站上直接新建或者使用windows github工具。

进入github repository 项目

115209_jnUT_913941

在github windows工具中使用git Bash打开项目,使用cd命令进入已有项目根目录下

115503_zeKA_913941

touch README.md //新建说明文件git init //在当前项目目录中生成本地git管理,并建立一个隐藏.git目录git add . //添加当前目录中的所有文件到索引git commit -m "first commit" //提交到本地源码库,并附加提交注释git remote add origin https://github.com/chape/test.git //添加到远程项目,别名为origingit push -u origin master //把本地源码库push到github 别名为origin的远程项目中,确认提交

提交完成,查看repository。

115957_wrzv_913941

更新代码

cd /d/TVCloudgit add .git commit -m "update test" //检测文件改动并附加提交注释git push -u origin master //提交修改到项目主线

130729_AX6M_913941

github常用命令

git push origin master //把本地源码库push到Github上git pull origin master //从Github上pull到本地源码库git config --list //查看配置信息git status //查看项目状态信息git branch //查看项目分支git checkout -b host//添加一个名为host的分支git checkout master //切换到主干git merge host //合并分支host到主干git branch -d host //删除分支host
posted @ 2015-01-07 20:07  宋家伟  阅读(287)  评论(0编辑  收藏  举报