發表文章

目前顯示的是 10月 13, 2013的文章

設定 Git 的環境變數 - Git config

這裡記錄一下目前會用到的 git config 設定 # 設定使用者資訊 git config --global user.name "Steven" git config --global user.email "steven@helloworld.com" # 設定顏色顯示 git config --global color.ui auto git config --global color.diff auto git config --global color.status auto git config --global color.branch auto git config --global color.log auto # 設定 alias git config --global alias.st status git config --global alias.co checkout # 如要忽略空白的比對,可增加以下這個 git config --global apply.whitespace nowarn 設定完之後,在個人的家目錄底下去 cat .gitconfig ,即會看到此資訊 [ push ] default = matching [ alias ] st = status # 設定 status 縮寫 co = checkout # 設定 checkout 縮寫 [ color ] ui = auto # 設定 ut 的顏色為 auto diff = auto # diff status = auto # status branch = auto # branch log = auto # log, 以上這幾種都會自動標色 [ user ] name = Steven Wu email = steven@helloworld.com 參考資料: http://gogojimmy.net

在舊版 Ubuntu 底下安裝新版 git 套件 (以 Ubuntu 8.04 hardy 為例)

最近由於工作需求,需要在舊版的 Ubuntu 上面安裝 git 套件, 但由於舊版的 Ubuntu 版本已不支援「直接」透過 apt-get update 來更新 source list, 於是用了另一種方法來直接安裝 git,方法如下: 下載目前最新版的 git-1.8.4.1 版本,並且解壓縮並安裝 wget http://www.kernel.org/pub/software/scm/git/git-1.8.4.1.tar.gz tar zxvf git-1.8.4.1.tar.gz cd git-1.8.4.1 ./configure make make install 之後就可以開心的建立 Git repository 了! 參考資料: http://serengetisunset.blogspot.tw/2009/02/installing-git-1613-on-ubuntu-804.html