小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Git 初學筆記

 思考的軌跡 2012-02-22

Git 初學筆記- 指令操作教學

Git 是分散式的版本控制系統(tǒng), 從架設(shè)、簡易操作、設(shè)定, 此篇主要是整理基本操作、遠端操作等.

注: Git 的范圍太廣了, 把這篇當作是初學入門就好了. :)

注意事項

由project/.git/config 可知: (若有更多, 亦可由此得知)

  • origin(remote) 是Repository 的版本
  • master(branch) 是local 端, 正在修改的版本

平常沒事不要去動到origin, 如果動到, 可用git reset --hard 回覆到?jīng)]修改的狀態(tài).

Git 新增檔案

  • git add . # 將資料先暫存到staging area, add 之后再新增的資料, 于此次commit 不會含在里面.
  • git add filename
  • git add modify-file # 修改過的檔案, 也要add. (不然commit 要加上-a 的參數(shù))
  • git add -u # 只加修改過的檔案, 新增的檔案不加入.
  • git add -i # 進入互動模式

Git 刪除檔案

  • git rm filename

Git 修改檔名、搬移目錄

  • git mv filename new-filename

Git status 看目前的狀態(tài)

  • git status # 看目前檔案的狀態(tài)

Git Commit

  • git commit
  • git commit -m 'commit message'
  • git commit -a -m 'commit -message' # 將所有修改過得檔案都commit, 但是新增的檔案還是得要先add.
  • git commit -a -v # -v 可以看到檔案哪些內(nèi)容有被更改, -a 把所有修改的檔案都commit

Git 產(chǎn)生新的branch

  • git branch # 列出目前有多少branch
  • git branch new-branch # 產(chǎn)生新的branch (名稱: new-branch), 若沒有特別指定, 會由目前所在的branch / master 直接復制一份.
  • git branch new-branch master # 由master 產(chǎn)生新的branch(new-branch)
  • git branch new-branch v1 # 由tag(v1) 產(chǎn)生新的branch(new-branch)
  • git branch -d new-branch # 刪除new-branch
  • git branch -D new-branch # 強制刪除new-branch
  • git checkout -b new-branch test # 產(chǎn)生新的branch, 并同時切換過去new-branch
  • # 與remote repository 有關(guān)
  • 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 # 由現(xiàn)在的環(huán)境為基礎(chǔ), 建立新的branch
  • git checkout -b newbranch origin # 于origin 的基礎(chǔ), 建立新的branch
  • git checkout filename # 還原檔案到Repository 狀態(tài)
  • git checkout HEAD . # 將所有檔案都checkout 出來(最后一次commit 的版本), 注意, 若有修改的檔案都會被還原到上一版. (git checkout -f 亦可)
  • git checkout xxxx . # 將所有檔案都checkout 出來(xxxx commit 的版本, xxxx 是commit 的編號前四碼), 注意, 若有修改的檔案都會被還原到上一版.
  • git checkout -- * # 恢復到上一次Commit 的狀態(tài)(* 改成檔名, 就可以只恢復那個檔案)

Git diff

  • git diff master # 與Master 有哪些資料不同
  • git diff --cached # 比較staging area 跟本來的Repository
  • git diff tag1 tag2 # tag1, 與tag2 的diff
  • git diff tag1:file1 tag2:file2 # tag1, 與tag2 的file1, file2 的diff
  • git diff # 比較目前位置與staging area
  • git diff --cached # 比較staging area 與Repository 差異
  • git diff HEAD # 比較目前位置與Repository 差別
  • git diff new-branch # 比較目前位置與branch(new-branch) 的差別
  • git diff --stat

Git Tag

  • git tag v1 ebff # log 是commit ebff810c461ad1924fc422fd1d01db23d858773b 的內(nèi)容, 設(shè)定簡短好記得Tag: v1
  • git tag 中文ebff # tag 也可以下中文, 任何文字都可以
  • git tag -d 中文# 把tag=中文刪掉

Git log

  • git log # 將所有l(wèi)og 秀出
  • git log --all # 秀出所有的log (含branch)
  • git log -p # 將所有l(wèi)og 和修改過得檔案內(nèi)容列出
  • git log -p filename # 將此檔案的commit log 和修改檔案內(nèi)容差異部份列出
  • git log --name-only # 列出此次log 有哪些檔案被修改
  • git log --stat --summary # 查每個版本間的更動檔案和行數(shù)
  • git log filename # 這個檔案的所有l(wèi)og
  • git log directory # 這個目錄的所有l(wèi)og
  • git log -S'foo()' # log 里面有foo() 這字串的.
  • git log --no-merges # 不要秀出merge 的log
  • git log --since="2 weeks ago" # 最后這2周的log
  • git log --pretty=oneline # 秀log 的方式
  • git log --pretty=short # 秀log 的方式
  • git log --pretty=format:'%h was %an, %ar, message: %s'
  • git log --pretty=format:'%h : %s' --graph # 會有簡單的文字圖形化, 分支等.
  • git log --pretty=format:'%h : %s' --topo-order --graph # 依照主分支排序
  • git log --pretty=format:'%h : %s' --date-order --graph # 依照時間排序

Git show

  • git show ebff # 查log 是commit ebff810c461ad1924fc422fd1d01db23d858773b 的內(nèi)容
  • git show v1 # 查tag:v1 的修改內(nèi)容
  • git show v1:test.txt # 查tag:v1 的test.txt 檔案修改內(nèi)容
  • git show HEAD # 此版本修改的資料
  • git show HEAD^ # 前一版修改的資料
  • git show HEAD^^ # 前前一版修改的資料
  • git show HEAD~4 # 前前前前一版修改的資料

Git reset 還原

  • git reset --hard HEAD # 還原到最前面
  • git reset --hard HEAD~3
  • git reset --soft HEAD~3
  • git reset HEAD filename # 從staging area 狀態(tài)回到unstaging 或untracked (檔案內(nèi)容并不會改變)

Git grep

  • git grep "te" v1 # 查v1 是否有"te" 的字串
  • git grep "te" # 查現(xiàn)在版本是否有"te" 的字串

Git stash 暫存

  • git stash # 丟進暫存區(qū)
  • git stash list # 列出所有暫存區(qū)的資料
  • git stash pop # 取出最新的一筆, 并移除.
  • git stash apply # 取出最新的一筆stash 暫存資料. 但是stash 資料不移除
  • git stash clear # 把stash 都清掉

Git merge 合并

  • Straight merge 預設(shè)的合并模式,會有全部的被合并的branch commits 記錄加上一個merge-commit,看線圖會有兩條Parents 線,并保留所有commit log。
  • Squashed commit 壓縮成只有一個merge-commit,不會有被合并的log。SVN 的merge 即是如此。
  • cherry-pick 只合并指定的commit
  • rebase 變更branch 的分支點:找到要合并的兩個branch 的共同的祖先,然后先只用要被merge 的branch 來commit 一遍,然后再用目前branch 再commit 上去。這方式僅適合還沒分享給別人的local branch,因為等于砍掉重練commit log。

指令操作

  • git merge <branch_name> # 合并另一個branch,若沒有conflict 沖突會直接commit。若需要解決沖突則會再多一個commit。
  • git merge --squash <branch_name> # 將另一個branch 的commit 合并為一筆,特別適合需要做實驗的fixes bug 或new feature,最后只留結(jié)果。合并完不會幫你先commit。
  • git cherry-pick 321d76f # 只合并特定其中一個commit。如果要合并多個,可以加上-n 指令就不會先幫你commit,這樣可以多pick幾個要合并的commit,最后再git commit 即可。

Git blame

  • git blame filename # 關(guān)于此檔案的所有commit 紀錄

Git 還原已被刪除的檔案

  • git ls-files -d # 查看已刪除的檔案
  • git ls-files -d | xargs git checkout -- # 將已刪除的檔案還原

Git 維護

  • git gc # 整理前和整理后的差異, 可由: git count-objects 看到.
  • git fsck --full

Git revert 資料還原

  • git revert HEAD # 回到前一次commit 的狀態(tài)
  • git revert HEAD^ # 回到前前一次commit 的狀態(tài)
  • git reset HEAD filename # 從staging area 狀態(tài)回到unstaging 或untracked (檔案內(nèi)容并不會改變)
  • git checkout filename # 從unstaging 狀態(tài)回到最初Repository 的檔案(檔案內(nèi)容變回修改前)

Git Rollback 還原到上一版

  • git reset --soft HEAD^
  • 編輯+ git add filename
  • git commit -m 'rollback'

以下與遠端Repository 相關(guān)

Git remote 維護遠端檔案

  • git remote
  • git remote add new-branch http://git./project.git # 增加遠端Repository 的branch(origin -> project)
  • git remote show # 秀出現(xiàn)在有多少Repository
  • git remote rm new-branch # 刪掉
  • git remote update # 更新所有Repository branch
  • git branch -r # 列出所有Repository branch

抓取/ 切換Repository 的branch

  • git fetch origin
  • git checkout --track -b reps-branch origin/reps-branch # 抓取reps-branch, 并將此branch 建立于local 的reps-branch

刪除Repository 的branch

  • git push origin :heads/reps-branch

相關(guān)網(wǎng)頁

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多