git clone <合作開發的Code的HTTPS(https://github.com/..../....git)>
git remote -v
(會看到自己的)
origin https://github.com/u3814520/OpenCV_filters.git (fetch)
origin https://github.com/u3814520/OpenCV_filters.git (push)
git remote add <自己名稱> https://github.com/u3814520/OpenCV_filters.git
git fetch <自己名稱>
git add .
git commit -m "test"
git push <自己名稱>
git remote add <給對方名稱> https://github.com/<對方帳號>/OpenCV_filters.git
git pull