.git/config的配置
用webstrom開啟.git(在本地新建的資料夾中,預設隱藏)
找到config配置檔案
連線了自己的遠端倉庫後,config資料夾下預設出現了url=使用者名稱/專案名.git
本地更新別人遠端的內容到自己的本地,需要三步,但是以後兩步
更新:git remote update ***
把更新的內容拉到本地:git pull *** master
提交作業(每個人為專案做貢獻)
往自己的遠端通道推送 -origin
請求合併
Github 使用方法
一種方法是,在github建立乙個repository,然後git clone到本地,再把本地的檔案放到這個資料夾裡,再git add,git commit,git push到github 還有一種方法,在github建立同名 repository,但是注意,不要包括readme檔案。然後在本地資料...
github使用方法
1.建立專案後,提交到master上 1 git init 2 git add 3 git commit m note note是提交說明 4 git remote add origin http.git http.git實現與倉庫專案的關聯 5 git push u origin master 2...
Github使用方法
00x0 配置資訊。git config global user.name username 設定使用者名稱 git config global user.email email mail.com 設定郵箱 git config global color.ui auto git init 完成git...