想寫一個管git repositories的command line tool
latest #15
常常在開git repo實驗小東西,又想git push到網路上自己可以抓的地方(VPS, dropbox) (github沒有free private repo)
開專案要兩邊mkdir, git init, git init --bare有點麻煩,之前是寫shell script處理
之前是寫shell script處理ssh的問題 一個command自動ssh遠端開bare repo
定義warehouse是一個directory,其中每個subdirectory都是一個bare repo
定義workspace是一個directory,每個subdirectory都是repo
workspace可以設定與warehouse的關聯。
er 要做的話project name就叫house好了
house create cameron等同mkdir cameron; cd cameron; git init; cd ..; ssh blah 'cd house; mkdir cameron; cd cameron; git init --bare'
然後hostmonster那類shared host的hook問題可以用設定解掉
......WTF 該寫程式的時候無法專注,該做其他事的時候又一直在想programming的東西
back to top