Open3
git tips
git pushを強制的に取り消す
git reset --hard HEAD^
git push -f origin {{branch-name}}
git stash popでconflictしたので取り消したい
git checkout --ours .
git reset
git checkout .
直前のコミットを取り消し
git reset --soft HEAD^
ログインするとコメントできます
git reset --hard HEAD^
git push -f origin {{branch-name}}
git checkout --ours .
git reset
git checkout .
git reset --soft HEAD^