0%

Git 語法筆記

將狀態還原到當時的commit ```csharp
git reset “編碼”

1
2
3
4

將判斷現在source code的狀態 ```csharp
git status

將改變過的source code全部add進去 ```csharp
git add .

1
2
3
Commit ```csharp
git commit -m "名稱"

push ```csharp
git push origin master