Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我推送到 github 存储库,主分支中的所有内容都消失了。
我该如何恢复?
我使用了 Git GUI 工具
您需要将想要的提交推送到远程存储库。
在命令行上,那将是
git push <remote-name> <source-commit>:<target-branch>
<remote-name>是已配置遥控器的名称(通常为origin)。
<remote-name>
origin
<source-commit>描述要推送到远程的提交(修订)。这可以是本地分支的名称、提交哈希或其他内容。
<source-commit>
<target-branch>是您要推送到的远程分支(通常master)
<target-branch>
master