git restore極簡使用記錄

热饭班长發表於2024-03-01

用途

撤銷修改。

使用示例

前置知識

工作區(Changes) > 暫存區(Staged Chagnes)

修改檔案後,檔案會出現在工作區。
git add .或者git add filename後,檔案會出現在暫存區。

用法1

把檔案從工作區Changes下丟棄。
image.png

git restore .
// or
git restore filename

執行git restore .後,Changes被清空並隱藏了。
image.png

用法2

把檔案從暫存區Staged Changes下退回到Changes
image.png

git restore --staged .
// or
git restore --staged filename

執行git restore --staged .後,原來在Staged Changes下的檔案被退回到Changes下了。
image.png

注意事項

暫無。

相關文章