标签:
进入到本地目录
// 配置用户信息
git config --global user.name "name"
git config --global user.email "email"
// 克隆远程项,以开源中国为例,https://git.oschina.net/luop/Test为远程项目地址
git clone https://git.oschina.net/luop/Test
// 操作,可以直接对克隆后的文件进行修改。
// 其中"luopeng_",双引号中的内容是对本次提交做的简单说明
git add --all
git status
git commit -m "luopeng_"
git push // 输入用户名和密码
标签:
原文地址:http://www.cnblogs.com/luop/p/4746085.html