初始配置
git config --global user.name 配置使用者名稱git config --global user.email 配置郵箱
git config --global core.editor 配置編輯器
建立專案
git clone 轉殖遠端倉庫git init [project] 初始化本地專案
新增
git add 新增檔案到暫存區git commit -m 將暫存區的內容提交到 head
git commit -am 將 add 和 commit 合併操作
git commit --amend -m 將 add 和 commit 合併操作且合併到上次 commit
顯示
git status 顯示狀態git diff [head] 顯示差異
git log 顯示日誌
git show 顯示某個 commit 的詳細內容
git blame 顯示檔案每行的 commit 資訊
撤回
git restore 撤回工作區的修改git restore --staged 將已提交到暫存區的修改撤回工作區
git reset [--mixed] 將當前版本撤回到某個 commit,保留工作區的修改
git reset --soft 將當前版本撤回到某個 commit, 保留工作區和暫存區的修改
git reset --hard 將當前版本撤回到某乙個 commit,不保留工作區的修改
git rm 將檔案從工作區和暫存區刪除
git mv 將檔案從工作區和暫存區移動或改名
分支
git branch [--list] 顯示所有分支git branch -a 顯示遠端分支
git branch
建立分支
git branch -d|-d
刪除分支
git branch -m 重新命名當前分支
git switch
切換到已有分支
git switch -c
建立並切換分支
git merge
將某個分支合併到當前分支
git tag 給當前分支打標籤
git stash 將工作區的更改儲存到髒工作目錄中
git stash drop 將髒工作目錄中的資料刪除
git stash pop 將髒工作目錄中的資料恢復工作區並刪除髒資料
遠端
git remote [-v] 顯示遠端庫git remote show 顯示某個遠端庫的資訊
git remote add 新增遠端庫鏈結
git remote rm 刪除遠端庫鏈結
git remote rename 重新命名遠端庫
git pull [
] 拉取遠端庫到本地庫
git push [-u ] 將本地庫推送到遠端庫
git push origin --delete
|git push origin :crazy-experiment 刪除遠端分支
git fetch 從遠端庫獲取到本地庫
幫助
git help 顯示某個命令的詳細使用文件git -h 顯示某個命令的使用說明
checkout
git checkout 丟棄工作區的修改git checkout -f 強制丟棄工作區和暫存區的修改
git checkout
切換分支
git checkout -b
建立並切換分支
常用命令 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...