git init //初始化倉庫
git add . //將資料夾中的所有**提交到工作區
git commit -m 『說明』//將工作區的**交到本地倉庫
git remote add origin url//將本地倉庫與遠端倉庫關聯,url為遠端倉庫位址
git pull --rebase origin master//獲取本地倉庫與遠端同步
注:若遠端倉庫為空,則提交**時這步可不必執行
git push -u origin master//將本地倉庫的**提交到遠端倉庫分支為master上
在提交專案時,可以使用git status來檢視提交狀態
git clone url//url為遠端倉庫位址
git init
git branch//顯示所有本地分支
git branch newbranch //建立本地分支
git checkout branch/tag //切換到本地分支中指定的分支
git branck//檢視當前分支(前面帶*的就是你的當前分支)
git merge branchname//要合併的分支名
注:若你當前的分支為master,則是將另乙個分支的內容並到master分支
注:若在合併的過程中發生衝突,要先解決衝突才能合併
git branch //檢視本地所有分支
git branch branchname //建立分支
git checkout branchname //切換分支
git checkout -b branchname //建立+切換分支
git merge branchname //合併某分支到當前分支
git branch -d branchname //刪除分支
git log --graph//檢視分支合併圖。 附:
Git的基本使用
一 準備工作 1.建立庫資料夾 repository 使用者資料夾 develop 2.cd c cd software 清屏 ctrl l 或clear cd repository 然後初始化倉庫 git init bare shared.git 在develop資料夾下建立兩個使用者 user1...
git的基本使用
1 遠端倉庫相關命令 檢出倉庫 git clone git 檢視遠端倉庫 git remote v 新增遠端倉庫 git remote add name url 刪除遠端倉庫 git remote rm name 拉取遠端倉庫 git pull remotename localbranchname ...
git的基本使用
date 2015 12 26 updated 2016 01 10 git是 管理工具,方便開發者之間的協作。現在在各個開發平台上都已經出現了git的視覺化管理客戶端,然而對於通過shell命令對 庫進行管理永遠比視覺化介面上操作來得穩妥,下面根據自身使用經驗,就git的使用規範以及常見命令做入門...