http://blog.sina.com.cn/s/blog_4ce89f2001014qvr.html


1.git clone                                      从远程的Git版本库克隆代码,也可以理解成检出代码,可以在末尾指定新的名字
        eg. git  clone  git://github.com/someone/some_project.git   some_project
2.git remote -v                               查看远程仓库
3.git remote rm [name]                  删除远程仓库
4.git remote set-url --push [name] [newUrl] 修改远程仓库
5.git pull [remoteName] [localBranchName]   拉取远程仓库
        eg. git pull origin master
6.git push [remoteName] [localBranchName]   推送远程仓库
        eg. git push origin master
7.git add
        git add test.txt                #注意,要gitignore一些特殊文件,然后每一>次提交前git status,确认提交的每一个文件
        git add - A
        git add *.c                     #用通配符的方式跟踪文件
8.git commit -m "msg"
9.git config
        git config --global user.name "myname"          #设置用户名
        git config --global user.email "myemail"        #设置邮箱
        git config --global core.editor "myeditor"      #设置编辑器
        git config --list                           

转载于:https://www.cnblogs.com/dingxiaoyue/p/4926843.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐