2011年10月21日 星期五

由 github 將 dotfile 專案抓回來

先安裝 git core (在 ubuntu 底下):
#sudo apt-get install git-core

將專案 clone 回來(https的網址, 請參考專案的網址)
# git clone https://userproject@github.com/userproject/dotfile.git

將 dotfile 內的資料, 指到指定的資料夾內
#cd ~/dotfile
#ln -fs `pwd`/vim ~/.vim
#ln -fs `pwd`/vimrc ~/.vimrc

參考網站:
http://huan-lin.blogspot.com/2011/05/git-basic-workflow.html
http://c9s.blogspot.com/2009/11/git-dotfiles.html
http://gavaee.wordpress.com/2011/10/11/git-安裝及使用/

http://help.github.com/linux-set-up-git/
http://antbsd.twbbs.org/~ant/wordpress/?p=3044

===========================================================

如果在電腦上新增一個專案, 可用以下方式:
mkdir ~/dotfile
cd ~/dotfile
以下是要放入的檔案
mv ~/.vim vim
mv ~/.vimrc vimrc
git config --global user.name "user real name"
git config --global user.email "user email"
git init
touch README
git add README   # 如果只有幾個檔案, 可以此方式
git add .  #如果此資料夾下檔案都要, 使用此方式
git commit -m "commit description ..."
(https的網址, 請參考專案網址)
git push https://userproject@github.com/userproject/dotfile.git







沒有留言: