muyier

git 常用命令

git clone [url]

  克隆代码库到本地 

git status

  查看状态

git remote -v

  查看远程仓库

git branch

  查看分支

git pull --rebase

  更新本地分支

git add

  添加文件到暂存区

git commit -m "comment"

  提交被添加到暂存区的文件

git push -u origin branch

  将commit push到远程分支

git reflog

  显示整个本地仓储的commit,包括所有branch的commit,甚至包括已经撤销的commit。

  只要HEAD发生了变化, 就会在reflog里面看得到

git branch v-ninyan/ToolSStoTsv HEAD@{8}

  恢复分支

 

git cherry-pick [fed52f2]

  找到commit

 

posted on 2017-12-06 20:14  muyier  阅读(111)  评论(0编辑  收藏  举报

导航