git stash
: 保存当前工作进度
git stash save 'message...'
: 添加一些注释。
git stash pop
: 恢复最新的进度到工作区
git remote prune origin
:将本地分支与已删除的远程分支同步
git branch -d <branch-name>
:删除分支
git branch -D <branch-name>
: 强制删除本地分支
git push origin -d <branch-name>
: 删除远程仓库分支
git branch -vv
: 查看本地和远程仓库分支关联关系
git branch --set-upstream-to=<remote-branch> <local-branch>
: 设置关联关系
git tag <tag-name>
: 新建一个tag
git tag -a <tag-name> -m "<description>"
: 创建一个带有注释的标签
git tag -d <tag-name>
: 删除tag
git push -d <remote> <tag-name>
: 删除操作同步到远程仓库
git tag -a <tag-name> -m "<description>"
: 给tag增加描述
git show <tag-name>
: 查看tag描述
git tag -n
: 查看所有tag以及其描述