码迷,mamicode.com
首页 > 其他好文 > 详细

Git最基本操作

时间:2018-06-19 13:45:31      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:基本   stat   use   克隆   git pull   comm   out   oba   user   

git配置用户邮箱和用户名:

git config --global user.email "xx@xx.com"

git config --global user.name "xx"

克隆远程代码:git clone ssh://git@xxxxxxxxxx

创建本地develop分支:git checkout -b develop

同步代码:git pull origin develop

获取本地全部修改:git status

比较差异:git diff

提交到本地仓库:git commit -a -m "xxx"

提交到远程仓库:git push origin develop

Git最基本操作

标签:基本   stat   use   克隆   git pull   comm   out   oba   user   

原文地址:https://www.cnblogs.com/avalon-merlin/p/9197681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!