初始化 Git 倉庫:
git init
克隆遠程倉庫:
git clone <repository-url>
檢查當前狀態:
git status
添加更改到暫存區:
git add <file> # 添加指定文件
git add . # 添加所有變更
提交更改:
git commit -m "commit message"
查看提交歷史:
git log
創建新分支:
git branch <branch-name>
切換到指定分支:
git checkout <branch-name>
創建並切換到新分支:
git checkout -b <branch-name>
刪除分支:
git branch -d <branch-name>
合併分支:
git merge <branch-name>
查看遠程倉庫:
git remote -v
添加遠程倉庫:
git remote add <name> <repository-url>
推送到遠程倉庫:
git push <remote> <branch-name>
拉取遠程更改:
git pull <remote> <branch-name>
查看當前分支:
git branch
顯示變更的文件:
git diff
重置到某個提交:
git reset --hard <commit-id>
放棄暫存的更改:
git reset <file>
最簡單明瞭的察看方法就是直接
git help
就會得到如下圖
今天跟大家分享常見的 Git 指令,能幫助你在版本控制中進行日常操作。如果大家對於git感興趣的話,可以點選以下連結喔
https://git-scm.com/docs