I'm Joe Angel. I like coding and interesting in designing and developing API. So, There are something about programming and tool articles. Also, Some daily will be here!
2012年7月14日 星期六
Git + Dropbox,在 Dropbox 上建立 Git Server DB
[前言]
Git 的強大版本控制、Dropbox 免費雲檔案儲存服務,是無人不曉的!
本篇文章將教您如何在 Dropbox 上建立 Git Server DB!
如果對於 Git 、 Doprpbox 想多了解如何使用,可以參考下列文章:
關於 Git 使用方式,可以看看這份簡報
http://www.slideshare.net/littlebtc/git-5528339
Littlebtc ( Hsiao-Ting Yu )
Dropbox 使用方式可以參考這篇文章
http://blog.xuite.net/yh96301/blog/36409663-Dropbox%E5%85%8D%E8%B2%BB%E7%A9%BA%E9%96%93
[範例教學]
範例環境:Linux
假設 Dropbox 放在你的家目錄底下:~/Dropbox
你可以如下方式設定好 git + dropbox !!
# 安裝必要套件
$ sudo apt-get install git git-core
# 在 Dropbox 底下建立 git/test 目錄
$ mkdir -p ~/Dropbox/git/test
# 將 git/test 初始化
$ cd ~/Dropbox/git/test
$ git init-db --bare
# 建立 ~/git ,準備 clone test
$ mkdir -p ~/git/
$ cd ~/git
# clone test
$ git clone ~/Dropbox/git/test
$ cd test
# 第一次使用,建立一個檔案並 push
$ touch README
$ git add README
$ git commit -m "Init"
$ git push origin master:refs/heads/master
# 大功告成 !
# 以後就可以使用如下指令 push 啦!
$ git push
[後記]
在 Dropbox 上建立好專屬的 git server 後,
如果開發專案/專題,可將 Dropbox/git/xxx 專案目錄分享給其他開發者,
方便協同開發!
Happy git, Happy coding!
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言