Git 新增檔案
- git add . # 將資料先暫存到 staging area, add 之後再新增的資料, 於此次 commit 不會含在裡面.
- git add filename
- git add modify-file # 修改過的檔案, 也要 add. (不然 commit 要加上 -a 的參數)
- git add -u # 只加修改過的檔案, 新增的檔案不加入.
- git add -i # 進入互動模式
Git 刪除檔案
- git rm filename
Git 修改檔名、搬移目錄
- git mv filename new-filename
Git status 看目前的狀態
- git status # 看目前檔案的狀態
Git Commit
- git commit
- git commit -m 'commit message'
- git commit -a -m 'commit -message' # 將所有修改過得檔案都 commit, 但是 新增的檔案 還是得要先 add.
- git commit -a -v # -v 可以看到檔案哪些內容有被更改, -a 把所有修改的檔案都 commit
Git 產生新的 branch
- git branch # 列出目前有多少 branch
- git branch new-branch # 產生新的 branch (名稱: new-branch), 若沒有特別指定, 會由目前所在的 branch / master 直接複製一份.
- git branch new-branch master # 由 master 產生新的 branch(new-branch)
- git branch new-branch v1 # 由 tag(v1) 產生新的 branch(new-branch)
- git branch -d new-branch # 刪除 new-branch
- git branch -D new-branch # 強制刪除 new-branch
- git checkout -b new-branch test # 產生新的 branch, 並同時切換過去 new-branch
- # 與 remote repository 有關
- git branch -r # 列出所有 Repository branch
- git branch -a # 列出所有 branch
Git checkout 切換 branch
- git checkout branch-name # 切換到 branch-name
- git checkout master # 切換到 master
- git checkout -b new-branch master # 從 master 建立新的 new-branch, 並同時切換過去 new-branch
- git checkout -b newbranch # 由現在的環境為基礎, 建立新的 branch
- git checkout -b newbranch origin # 於 origin 的基礎, 建立新的 branch
- git checkout filename # 還原檔案到 Repository 狀態
評論
此文章尚無評論。