1、gitee和git能解決的問題git
咱們開發小組,有三位同窗,怎麼共享代碼?bash
我更新代碼後,怎麼傳遞給另外兩位同窗?spa
我和別人同時修改了一個文件,怎麼辦?3d
2、準備blog
註冊gitee:https://gitee.com/開發
注意事項:給我的空間地址取個好名字it
下載git:https://git-scm.com/downloadsio
安裝git:出現一堆選項,我全選了默認;ast
建議:將line ending conversion 改成「checkout as is,commit as is」,不要讓git幫你改email
3、建gitee倉庫
必填的只有倉庫名稱和路徑,其餘的默認就好
倉庫地址構成——https://gitee.com/我的空間地址/倉庫名
4、git配置
新建個文件夾,右鍵,選擇「git bash here」
用戶名:git config --global user.name "xiaoming"
郵箱:git config --global user.email "xiaoming@example.com"
5、clone/push/pull 操做
clone:將碼雲上的倉庫複製一份到本地;
push:將本地修改後的代碼推送上碼雲;
pull:將別人推送的代碼拉取到本地;
clone:
git clone https://gitee.com/我的空間/倉庫名
add->commit->push:
git add .
git commit [-m "修改說明」]
git push origin master
pull:
git pull origin master
gitee工做臺的動態更新
6、其餘
上傳代碼片斷
fork:看到想參與的gitee項目,fork到本身的碼雲倉庫中
watch:watch項目進展,不參與項目
pull request:向審覈人員發送pull request,等待經過
(講道理,爲何不叫push request?)
可能的答案:https://cloud.tencent.com/developer/article/1348651
7、回答開頭的問題
代碼共享:從gitee倉庫中clone或pull
代碼更新:從本地pull到gitee倉庫
衝突管理:push時,若是有衝突(好比文件已經被別人修改過了),建議你從新pull一次倉庫