轉殖倉庫
git clone [url]
在當前目錄新建乙個git**庫
git init
新建乙個目錄,並將其初始化為git**庫
git init [project-name]
增加乙個新的遠端倉庫,並命名
git remote add [shortname] [url]
顯示所有遠端倉庫
git remote -v
刪除遠端倉庫與本地倉庫關聯名稱
git remote rm origin
重新設定遠端倉庫位址
git remote set-url origin newaddress
關聯遠端倉庫到新的本地倉庫名稱
git push origin -u new-name
上傳本地指定分支到遠端倉庫
git push [remote] [branch]
取回遠端倉庫的變化,並與本地分支合併
git pull [remote] [branch]
git fetch [remote]
新增當前目錄的所有檔案到暫存區
git add .
新增指定目錄到暫存區,包括子目錄
git add [dir]
新增指定檔案到暫存區
git add [file1] [file2] ...
恢復暫存區的所有檔案到工作區
git checkout .
amend補上遺漏檔案(且不修改commit資訊)
git commit –-amend –-no-edit
檢視本地master分支上最近x次commit
git log -
檢視指定分支的commit
git log [branch]
圖形化顯示分支資訊(oneline),並顯示分叉情況(graph)
git log --oneline --graph
檢視指定檔案涉及的commit(末尾 – [file or directory])
git log -- [file or directory]
檢視指定時間範圍內的commit合併指定分支到當前分支
git merge [branch]
合併指定commit到當前分支
git merge [commitid]
檢視本地tag
git tag
刪除本地tag
git tag -d [tagname]
常用命令 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...
git常用命令
詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...