git 常用命令

常用命令

add        Add file contents to the index
bisect     Find by binary search the change that introduced a bug
branch     List, create, or delete branches
checkout   Checkout a branch or paths to the working tree
clone      Clone a repository into a new directory
commit     Record changes to the repository
diff       Show changes between commits, commit and working tree, etc
fetch      Download objects and refs from another repository
grep       Print lines matching a pattern
init       Create an empty Git repository or reinitialize an existing one
log        Show commit logs
merge      Join two or more development histories together
mv         Move or rename a file, a directory, or a symlink
pull       Fetch from and merge with another repository or a local branch
push       Update remote refs along with associated objects
rebase     Forward-port local commits to the updated upstream head
reset      Reset current HEAD to the specified state
rm         Remove files from the working tree and from the index
show       Show various types of objects
status     Show the working tree status
tag        Create, list, delete or verify a tag object signed with GPG

常用命令行

master    默认开发主干分支
origin    默认远程版本库
Head      默认开发分支
Head^     Head的福提交
  • 版本库
git clone                      #克隆远端版本库
git init                            #初始化本地版本库
  • 分支与标签
git branch                          #查看所有本地分支
git branch -a                       #查看所有分支
git branch -r                       #查看所有远端分支
git branch              #创建新分支
git branch        #以branch1分支为基础创建branch2分支
git branch -d               #删除本地分支
git branch -m  #分支重命名
git checkout            #切换到指定分支或者标签
git tag                             #查看所有本地标签
git tag                    #基于最新提交创建标签
git tag -d                     #删除标签

  • 修改和提交代码
git status                          #查看当前状态
git diff                            #查看变更内容
git add .                           #把所有变动的文件添加到暂存区
git add                       #把指定的文件添加到暂存区
git mv            #文件更名
git rm                        #删除文件
git rm --cached               #停止跟踪文件但不删除
git commit -m ''    #提交文件
git commit --amend                  #对上一次的提交进行修改。既可以对上次提交的内容进行修改,也可以修改提交说明
  • 合并与衍合
git merge                   #合并指定分支的代码到当前分支
git rebase                  #衍合指定分支到当前分支
  • 远程操作
git remote -v                       #查看远程版本库信息
git remote show             #查看指定远程版本库信息
git remote add         #添加远程版本库
git fetch                   #从远程库获取代码
git pull            #下载代码及快速合并
git push            #上传代码及快速合并
git push  :     #删除远程分支或标签
git push --tags                     #上传所有标签
  • 撤销
git reset --hard HEAD               #撤销工作目录中所有未提交文件的修改
git checkout HEAD             #撤销指定的未提交文件的修改
git revert                  #撤销指定的提交
  • 其他
git log                             #查看提交历史
git log -p                    #查看指定文件的提交历史
git blame                     #以列表方式查看指定文件的提交历史
git stash push                      #将文件给push到一个临时空间中
git stash pop                       #将文件从临时空间pop下来

汇总常用的一些操作

git checkout -b dev #创建新的本地分支并切换到新分支,等价于
git branch dev
git checkout dev

#提交代码
git add 
git commit 

git status #查看当前状态

git remote show #查看远程库
git remote show origin #查看远程库origin里边的资源

git merge origin/dev #将远程dev分支与当前分支进行合并

git push origin master #将本地项目给提交到服务器中


git代码发布流程

假如开发分支为dev 线上分支为online

  1. 创建功能分支 dev
git checkout -b dev
  1. 功能迭代
(dev) git commit
  1. 合并最新线上分支代码到开发分支
(dev) git checkout online
(online) git pull
(online) git checkout dev
(dev) git merge online
#解决冲突
(dev) git commit

  1. 功能迭代
(dev) git commit
  1. 测试通过,合并代码到线上的online分支
#先执行一遍第三步,也就是合并最新线上分支代码到开发分支,以防冲突
(dev) git checkout online 
(online) git merge dev --squash 
(online) git commit #
推送到远端,正常结束 
(online) git push origin

如果这一步被拒绝,是因为online有更新的代码提交了,为了防止online上出现冲突,需要重新执行这一步

参考文档

Git 常用命令速查表(图文+表格) https://www.cnblogs.com/kenshinobiy/p/4543976.html

你可能感兴趣的:(git 常用命令)