git 使用注意事項

2021-09-24 06:39:38 字數 464 閱讀 9005

git 使用注意事項:

1.檢視git配置

git config --list

2. 設定全域性使用者名稱,郵箱

git config --global user.name "輸入你的使用者名稱"

git config --global user.email "輸入你的郵箱"

已經有可以用以下命令修改

git config --global --replace-all user.email "輸入你的郵箱"

git config --global --replace-all user.name "輸入你的使用者名稱"

3.建立ssh key

ssh-keygen -t rsa -c "[email protected]"

4.使用生成的id_rsa.pub存入github構建連線。

複製**

git使用注意事項

配置git 在使用git之前你需要配置一下git。git在你建立提交的時候會記錄你的名字和email位址,所以你應該告訴git這些內容。可以使用 git config 命令來設定。git config global user.name 你的使用者名稱 git config global user.e...

git 注意事項

1,使用者憑證 github的兩種url位址 由於git和github互動操作可能會很頻繁,那麼一定少了使用者授權的操作,為了防止每次操作重複輸入使用者名稱和密碼,git提供了兩種解決方法 2,不要什麼檔案都提交到github上!github.com github gitignore 這個 下有 g...

小組協作使用git注意事項

第一步 首先每個小組成員,在自己本地建立乙個目錄,作為工作空間,再去git clone 這個遠端倉庫 git clone git xx git1 第二步 一般的,小組成員需要建立屬於自己的分支,每個分支代表著開發不同的功能 git branch dev1 創立乙個名字叫dev1的分支 git bra...