-
不小心在项目后台直接删除分支
git fetch -p origin
-
查看log
git log
-
回退到某个版本
git reset --hard xxxxx(commit hash)
-
推送所有标签
git push origin --tags
-
设置用户名和邮箱
git config --global user.name [username] git config --global user.email [email]
-
查看已设配置
git config --list
-
从git管理中移除重新添加
git rm -r --cached . git add .
-
fatal: refusing to merge unrelated histories
git pull origin master --allow-unrelated-histories
-
重置远程仓库地址
git remte origin set-url URL
-
删除远程tag
git push origin --delete tag <tagname>
-
删除本地tag
git tag -d <tagname>
网友评论