Coding人生小筆記

Git合作開發

Git合作開發
1. 到GitHub網頁的右上角點選Fork

image

2.到終端機git clone下來
git clone <合作開發的Code的HTTPS(https://github.com/..../....git)>
3. 加入remote
git remote -v  

(會看到自己的)

origin https://github.com/u3814520/OpenCV_filters.git (fetch)

origin https://github.com/u3814520/OpenCV_filters.git (push)

4. 加入 <自己名稱>
git remote add <自己名稱> https://github.com/u3814520/OpenCV_filters.git
git fetch <自己名稱>
5. 新增檔案
git add .
6. 加入commit
git commit -m "test"
7. 上傳上去
git push <自己名稱>

=更新本地合作開發進度=

1. 加入對方remote
git remote add <給對方名稱> https://github.com/<對方帳號>/OpenCV_filters.git
2. 到GitHub網頁按merge

image

3. 到git終端機更新本地資料
git pull