### 長話短說 每一次整個新 VM 出來試野都要搞個 GIT,同埋 Github 要改左一定要強制用 person access token 先可以登入,好難可以記得一個水蛇春咁長的 token 來用,所以不可能每次都打密碼來 clone 同埋 pull。 下面呢句係用來記住 git 登入資料的。 ```sh # 使用 store 方法來記低你的登入資料 $ git config --global credential.helper store ``` 另外如果需要 push 的話,就需要設定埋 user name 同埋 email 了。 ```sh # 設定 username $ git config --global user.name YOURNAME # 設定 email $ git config --global user.email YOUREMAIL ```