如何忽略 git 克隆?
How to ignore git clone?
我有一个存储库。我回滚到旧的提交。现在推一个新的。我收到这条消息。
On the master branch Your branch is 10 commits behind “origin /
master” and can be rewind ahead. (use "git pull" to update your
local branch) nothing to commit, no changes in the working directory
我怎么能忽略它呢?或者如何只删除这 10 个提交?
如果你在本地分支上做了一个 git reset --hard
,现在你希望远程分支看起来像你在它上面做的一样,你应该 push --force 它到远程
git push --force some-remote the-branch
我有一个存储库。我回滚到旧的提交。现在推一个新的。我收到这条消息。
On the master branch Your branch is 10 commits behind “origin / master” and can be rewind ahead. (use "git pull" to update your local branch) nothing to commit, no changes in the working directory
我怎么能忽略它呢?或者如何只删除这 10 个提交?
如果你在本地分支上做了一个 git reset --hard
,现在你希望远程分支看起来像你在它上面做的一样,你应该 push --force 它到远程
git push --force some-remote the-branch