建立 1.txt 並且輸入一行字
    git add 1.txt
    git commit -m ‘add 1.txt’
    git status
    git log
    建立新的檔案
    touch 2.txt
    touch 3.txt
    修改 1.txt 多加一行
    git add 2.txt
    git status (會顯示檔案狀態)
    查看版本記錄
    git commit -m ‘add 2.txt’
    git add 1.txt
    git commit -m ‘update 1.txt’
    git status
    git add 3.txt
    git commit -m ‘add 3.txt’
    git log —oneline

    touch 4.txt
    編輯4.txt:加入一行文字
    git add 4.txt
    在繼續編輯 4.txt
    git commit -m “create 4.txt”
    commit只會把暫存區的資訊放進去

    複製 .git 目錄作為備援 (要開啟隱藏項目才看得到)
    git checkout main(我的沒有main只有master【用git branch】)
    git status
    git log
    git reset —soft {hash id}
    使用 vs code 觀察或修改檔案
    git add
    git commit -m “update txt”
    git log —oneline