Git 的好處

最近在學習Git,發現Terminal上Git命令提示顯示中文,希望改成英文。

echo "alias git='LANG=en_GB git'" >> ~/.zshrc

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/3675b93c-b761-42e6-b62e-6c1289b4f22b/Untitled.png

如果你在 git commit 的時候出現錯誤,跳出了一個要你設定帳號跟姓名的畫面,請輸入以下指令

(記得把名字跟 email 換成你自己的)

  1. git config --global user.name "your name"
  2. git config --global user.email "youremail"

<aside> 💡 在 Mac “command + shift + . (dot)”可以顯示隱藏檔案/檔案夾。

</aside>

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/2532f273-185f-4915-85bc-4de934e327bb/Untitled.png

Git 的使用方式

  1. cd 到要版控的資料夾

  2. git init

  3. git add .

  4. git commit -m "hello"git commit -am "hello"

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/75775360-96a8-4461-ac8e-56b352a152d1/git-02.png

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ebf4c7c2-6335-4eb7-9c3c-b163f1321730/git-03.png