Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

30.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