具體的乙個流程示範
git init 初始化
git config --global user.name ''
git config --global user.eamil ''
git clone '' 獲取**,,第一次
git remote add origin [email protected]:yourusername/test.git 新增remote 遠端的ssh 這一步不需要其實
向遠端提交**
然後在本地修改**,git add .
git commit -m "test"
git push origin 《本地分支名》:《遠端分支名》 將本地**push到遠端倉庫上去
從遠端取回更新**
git pull origin 《遠端分支名》:《本地分支名》 將遠端分支**合併到當前分支
注意:修改**時先在遠端建立分支,然後push到那個分支上去,確定沒有問題之後再合併到主分支
git使用流程記錄
cd n1 ctrl 實用對比工具對比差異 git push檢視提交歷史 git log撤銷未修改內容 回滾到該commit處 git reset hard f97 892d4 159f4 cbd回到當前版本的最新 git pull origin releaseopenwrt檢視某個版本的修改,sh...
GIT操作流程
1 git clone 倉庫位址 2 開啟專案資料夾,會發現剛才在github裡面新建的檔案都存在本地了 3 將要上傳的檔案拷貝到這個目錄下,拷貝完成後,再執行下命令git status,看git是否獲取到檔案的更改 4 再執行命令git add all,將所有檔案都新增到倉庫中,如果想新增某乙個檔...
git操作流程
新增到自己的分支 建立分支並切換 xl git checkout b xl 自己的分枝 xl 1.切換到自己分支 git checkout xl 2.檢視狀態 git status 3.上傳檔案 git add 4.新增描述 git commit m update 5.新增到對應分支 git pus...