git --help 檢視幫助資訊;
it help command 檢視某個命令的具體幫助資訊;
git init 建立乙個新的版本庫(將當前的資料夾初始化為乙個空的git版本庫或者重新初始化乙個已經存在的版本庫);
git init --bare 建立乙個新的版本庫;
git clone remoterepository 從遠端的版本庫中檢出專案到當前資料夾(版本倉庫);
git fetch branchname 從遠端的版本庫中檢出專案並建立乙個新的分支branchname;
git pull repositoryname 從遠端的版本庫中檢出專案與本地的版本庫進行合併;
git push repositoryname branchname 將分支提交到遠端版本庫中;
git config --list 檢視配置列表;
git add . 新增當前資料夾下的所有檔案;
git add *.c 新增擴充套件名為c的當前資料夾下的所有檔案;
git add readme 新增readme檔案;
git commit modifyfile -m "note" 將修改過的檔案提交的本地版本庫中,並新增注釋;
git commit -m "note" 提交所有的檔案並新增注釋;
git commit -a -m "note" 先新增然後提交所有檔案並新增注釋;
git remote 檢視當前專案對應的遠端版本庫的名稱;
git remote -v 檢視當前專案對應的遠端版本庫的位址;
git status 檢視當前檔案的狀態;
git diff 預設為 git diff --staged命令;
git diff --staged 比較workspace和staged area;
git diff --cached 比較staged area和local repository;
git diff branchname1 branchname2 比較兩個分支的差異;
git checkout branchname 切換分支;
git branch 獲取分支的名稱列表;
git branch branchname 建立新的分支;
git merge "note" head branchname 將branchname合併到當前的分支中;
2. git checkout master
git pull branchname 或者 git merge branchname 將branchname合併到當前分支中;
git format-patch repositoryname/branchname 生成分支的補丁;
git tag -a versionname -m "note" 給當前的分支標記版本號;
git常用命令(1)
git 目前分支 demo 1 git checkout master 切換到master分支 2 git reset hard head 1 回滾到上次提交的master版本 3 git pull origin master 拉去遠端伺服器最新的master版本 4 git merge demo ...
常用命令 Git 常用命令大全
安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...
git 常用命令
檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...