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 .