git命令教程

添加远端信息:

  git remote add orgin_name ssh

创建分之并进入:

  git checkout -b batch_name

将主干合并到分之:

  git merge master

代码提交:

  git commit -m '备注' (windows环境用双引号)

  git push

代码更新:

  git pull

代码加入缓存:

  git add filename

代码移除缓存:

  git reset filename

查看分支信息:

  git branch -a -vv

 

posted on 2018-05-12 19:29  十字街~  阅读(98)  评论(0编辑  收藏  举报