普段はただ走るだけ
git add file
git commit
git push
しかし、プッシュする前にコミットを修正すると(を使用git commit --amend
)、次のプッシュは失敗します
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
ブランチをマージせずに git に変更をプッシュさせるにはどうすればよいですか? 私はブランチ ( master
) を 1 つしか持っておらず、このレポを使用しているのは私だけなので、なぜこれを言っているのですか?
git ブランチ -a:
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
編集: を使用するgitk HEAD @{u}
と、2 つのブランチがあることがわかります。1 つは元のコミットで、もう 1 つは修正されたコミットです。