Home | 簡體中文 | 繁體中文 | 雜文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | Email

29.3. GIT

配置GIT環境

git config --global user.name "Neo Chan"
git config --global user.email netkiller@msn.com

克隆倉庫
git clone https://github.com/freebook/PHP.git

...
編輯檔案
...

提交檔案
git add *
git commit -a

推送檔案
git push origin master
		
comments powered by Disqus