git常用指令

修改上次的commit訊息

git commit --amend -m "xxxxxxxxx"

 

git 刪除本地分支

git branch -D feature/TP-999

參考來源
Git: Delete a branch (local or remote)

 

清空目前修改的檔案

git restore .