用途
撤銷修改。
使用示例
前置知識
工作區(Changes
) > 暫存區(Staged Chagnes
)
修改檔案後,檔案會出現在工作區。git add .
或者git add filename
後,檔案會出現在暫存區。
用法1
把檔案從工作區Changes
下丟棄。
git restore .
// or
git restore filename
執行git restore .
後,Changes
被清空並隱藏了。
用法2
把檔案從暫存區Staged Changes
下退回到Changes
。
git restore --staged .
// or
git restore --staged filename
執行git restore --staged .
後,原來在Staged Changes
下的檔案被退回到Changes
下了。
注意事項
暫無。