itsPG.org

PG @ NCTU SenseLab

在git裡面取消commit / 強制pull到github / 刪除github Branch

最近這三個指令我使用的比率有點高所以來筆記一下用法

在git裡面取消commit

使用時機:不小心手殘commit兩次的時候

git reset HEAD@{1}

強制pull至github

使用時機:想要亂改遠端branch的時候

git push --force origin master

使用時機:不想開網頁出來刪branch的時候

git push origin --delete target_branch

Comments