We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git push -f github refs/remotes/origin/:refs/heads/ --tags --prune,这么推送可能会漏标签, 应该是推refs/heads//*一次, 推refs/tags/*一次
--prune 这个参数会删除远端 本地不存在的分支
典型情况:
Try:
git push -f github refs/remotes/origin/*:refs/heads/* --prune git push -f github refs/remotes/origin/*:refs/tags/* --prune
The text was updated successfully, but these errors were encountered:
No branches or pull requests
git push -f github refs/remotes/origin/:refs/heads/ --tags --prune,这么推送可能会漏标签, 应该是推refs/heads//*一次, 推refs/tags/*一次
--prune 这个参数会删除远端 本地不存在的分支
典型情况:
用你上面的命令会把dev_tag漏掉
Try:
The text was updated successfully, but these errors were encountered: