git web interface and author blog

專案共享:

目前用share file的方式 共用專案,

在Repo 設了相同群組並設定 git config core.sharedRepository true

同群組就可以一起push push囉!

隔幾天要建新的專案時又遇到同個問題,找很久才發現,

還要另外設


chmod -R g+s `find $repo -type d`

git remote add origin $path

git push origin master

好像是要幫資料設某些標誌,主要是要解決push以後使用者的群組權限有問題,這樣 push 以後在 objects 裡面自動建立的物件 擁有者群組就是 原始群組了

參考資訊:http://criticallog.thornet.net/2010/01/07/sharing-your-git-repository/

http://www.comptechdoc.org/os/linux/usersguide/linux_ugfilesp.html

http://stackoverflow.com/questions/3242282/how-to-configure-an-existing-git-repo-to-be-shared-by-a-unix-group

git-svn:

用 git 控制 svn 專案小撇步,除了學會git-svn指令以外,還可以弄些 alias 簡化操作,

順便提到 git svn 繳交跟更新的alias, git ready 看到的方法,

spull = !git-svn fetch && git-svn rebase 

,fetch是取,rebase 是重整索引,

只是會遇到 rebase needs update 的問題,如果有本地端修改的話,所以我把他改成

spull = !git-svn fetch && git stash && git-svn rebase && git stash apply
//讓他先 stash 起來 rebase 完再套用回去。
spush = !git-svn dcommit. //單純 svn commit ,git 的版本

這樣使用就很方便了~就能全部都換成~~~git囉囉囉囉~~~只是 svn 轉接過來的專案還是會有些慢,接下來試著銜接 branch 看看有沒有問題。

git 相關網站紀錄:

http://www.xiphux.com/programming/gitphp/

http://www.ohloh.net/p/gitphp

http://people.proekspert.ee/peeter/git/git.php

8種分享 git 專暗的方式 http://www.jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository/

http://gitready.com/

寫的不錯的使用手冊 http://tkg.im.ncue.edu.tw/?p=755

電子書線上版 PRO GIT http://progit.org/book/