- ubuntu 9.10 要裝 git-core和curl
$ apt-get install git-core curl - 初始一個Repo
$ mkdir /var/git
$ cd /var/git
$ git init-db
$ cat .git/HEAD - 加入檔案到Repo
$ echo "A" > a.txt
$ echo "B" > b.txt
$ git-add a.txt b.txt
$ git-commit -m "Initial commit"
- 更新內容
$ echo "A1" >> a.txt
$ git-diff
$ git-commit -a -m "new day for git"
記得把 example.com 換成 ip
【透過 git】
【透過 http/https】
- tbd
- 還在試
- Git/Git Repository/...
- commit 還有問題。
http://www.bitsun.com/documents/gittutorcn.htm