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

git冲突合并

时间:2016-05-23 06:44:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

1. 创建git资源库

????git init --bare 库名称

????

2. 在用户文件夹下把资源clone下来

????git clone <仓库目录> /g/software/repository/git/itheima <用户目录> .

????注意:clone时候用户目录必须为空

?

3. 创建一个文件,纳入到版本控制中。

????git add <文件名>

????第一次执行会出警告:warning: LF will be replaced by CRLF in readme.txt.

????????????????????????The file will have its original line endings in your working directory.

????警告处理:需要配置用户信息

????????????????????git config user.name = "zhangsan"

????????????????????git config user.email = "itheima@gmail.com"

????????????????????

4. 提交到本地版本库里。

????git commit <文件名>

????

5. 推送到远程共享版本库中

????git push origin master

????

6. 切换用户,拉取最新的文件

????git pull

????

git冲突合并

标签:

原文地址:http://www.cnblogs.com/yizhinageyuanfang/p/5518582.html

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