使用者工具

網站工具


service:git

Git

Book

Reference

安裝

指令教學

設定

git config --global user.name "MyName"

git config --global user.email "test@test.com"

建立新專案

cd project/

git init .

git add .

git commit -m "init commit"

git log

git show HEAD

git blame

git branch

git checkout -b newbranch

git checkout master && git merge newbranch

遠端操作

git clone git://xxxxxx

git push origin master

codebase

Mercurial

http://mercurial.selenic.com/

Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface.

Other

Git User's Survey 2010 summary: https://git.wiki.kernel.org/index.php/GitSurvey2010

service/git.txt · 上一次變更: 2016/04/21 17:59 由 sars