配置commit提交模板 | ||
查看指定commit提交的文件列表 | ||
查看指定commit提交的文件内容详细信息 | ||
本地仓库回退到指定commit节点 | git reset --hard xxx 硬复位,本地的修改会被冲掉 git reset xxx 软复位 | |
提交到远程仓库 | git push origin HEAD:refs/for/master | |
查询当前所属分支 查询存在的所有分支 切换到指定分支 | git branch -a git checkout git branch | |
查询存在的所有tag 查询当前所属tag 切换到指定tag | ||
官网参考:Git - Reference