1. 程式人生 > >四、Git暫存區的操作

四、Git暫存區的操作

一、刪除暫存區的檔案

$ git rm --cached <file-name>

 

二、暫存區恢復工作區的檔案

$ git checkout <flie-name>  //恢復單個檔案

$  git checkout .  //恢復全部檔案

 

三、暫存區提交到master主分支中

$ git commit -m "file outline"