码迷,mamicode.com
首页 > 其他好文 > 详细

git简单使用

时间:2015-08-20 20:37:05      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

进入到本地目录

// 配置用户信息

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 // 输入用户名和密码

git简单使用

标签:

原文地址:http://www.cnblogs.com/luop/p/4746085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!