当前位置:   article > 正文

GIT 常用命令速查表_git常用命令速查

git常用命令速查
注: 仅是自己总结归纳
1、创建版本库:
① git clone <url> 克隆远程版本库
② git init 初始化本地版本库
2、修改和提交
① git status 查看状态
② git diff 查看变更内容
③ git add . 跟踪所有改动过的文件 (add后面有个点,切勿忘记)
④ git add <file> 跟踪指定文件
⑤ git mv <old> <new> 文件改名
⑥ git rm <file> 删除文件
⑦ git rm --cached <file> 停止跟踪文件但不删除
⑧ git commit -m 'commit message' 提交所有更新过的文件
⑨ git commit --amend 修改最后一次提交
3、查看提交历史
① git log
② git log -p <file> 查看指定文件的提交历史
③ git blame <file> 以列表方式查看指定文件的提交历史
4、撤销
① git reset --hard HEAD 撤销工作目录中所有未提交文件的修改内容
② git checkout HEAD <file> 撤销指定的未提交文件的修改内容
③git revert <commit> 撤销指定的提交
5、分支与标签
① git branch 显示所有的本地分支
② git checkout <branch/tag> 切换到指定分支或标签
③ git checkout -b ‘my-test’ 创建并切换分支
④ git banch <new-branch> 创建新分支
⑤ git banch -d <branch> 删除本地分支
⑥ git tag 列出本地所有的标签
⑦ git tag <tagname> 基于最新提交创建标签
⑧ git tag -d <tagname> 删除标签
⑨ git branch -d <branchName> 删除本地分支(会提示未完全合并)
git branch -D <branchName> 强制删除本地分支
6、合并与衍合
① git merge <branch> 合并指定分支到当前分支
② git rebase <branch> 衍合指定分子到当前分支
7、远程操作
① git remote -v 查看远程本版库信息
② git remote show <remote> 查看指定远程版本库信息
③ git remote add <remote> <url> 添加远程版本库
④ git fetch <remote> 从远程库获取代码
⑤ git pull <remote> <branch> 下载代码及快速合并
⑥ git push <remote> <branch> 上传代码及快速合并
⑦ git push <remote> : <branch/tag-name> 删除远程分支或标签
⑧ git push --tags 上传所有标签
⑨ git push origin --delete <branchName> 删除远程分支


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/1017450
推荐阅读
相关标签
  

闽ICP备14008679号