iOS开发版本控制--git使用
现在公司仍然用的是SVN,究其原因可能是领导层认为SVN比较“安全”,因为,给你一个内网IP你在除了公司外的地方无法对项目作出人和修改。但是现在看好多公司都在用git,觉得这个git一定有它的过人之处,所以就来学习一下吧!
一、 安装
我们用的都是Mac,所以可以直接通过homebrew安装Git,具体方法请参考homebrew的文档:http://brew.sh/
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
然后再检查
$ git version // 判断是否安装成功,查看版本号
然后,设置你的个人信息
$ git config --global user.name "YourName"
$ git config --global user.email "YourEmail"
- 注意'git config'命令的'--global'参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。
二、基本使用
1、可以新建一个文件夹,mkdir testGit
, 然后cd testGit
$ git init // 创建仓库
Initialized empty Git repository in /Users/testGit/.git/
2、增加你需要改变的东西,放到testGit中去,添加到仓库中去
$ git add . // 注意 . 是增加所有的
3、提交到仓库中去 -m “这里面是需要注释的内容”
$ git commit -m "first init "
4、接下来就是看,你的远程仓库建在什么地方啦,我在github 和 coding 上都有,个人认为刚开始在coding 上使用还是不错的
$ git remote add origin git@coding.com....
假如此时遇到这个问题,fatal: Authentication failed for,那么有可能是没有添加ssh key导致的,具体可以参考这文章
Git SSH Key 生成步骤
5、把内容推送到远程库上
$ git push -u origin master //由于远程库是空的,我们第一次推送master分支时,加上了-u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来,在以后的推送或者拉取时就可以简化命令
$ git push origin master // 后期,当然在分支的情况,另论
6、然后每次用之前
$ git pull origin master // 每次使用之前最好刷新一下
实际上现在到目前为止就可以开始用起来啦,当然分支管理这个大部分我们后期在讨论。
常用的命令
$ git status // 查看每次变化的
$ git log // 查看每次记录的
$ git log --pretty=oneline // 查看记录更清晰
$ git clone git@github.com:****.git // 从远程仓库克隆,常用
7、建立分支并切换
$ git branch 分支名字 // 建立分支
$ git checkout 分支名字 // 切换到分支
$ git branch // 查看分支
8、合并分支
//先切换主支
$ git checkout master
$ git merge --no-ff 分支名字
三、理解
工作区-----仓库----远程仓库(git add; git commit ; git push )
1.png 2.png四、常见问题(陆续增加中···)
1(问)、合并的时候遇到的冲突
error: There was a problem with the editor 'vi'.
Not committing merge; use 'git commit' to complete the merge.
E325: ATTENTION
Found a swap file by the name ".git/.MERGE_MSG.swp"
owned by: eladb dated: Tue Aug 20 10:52:03 2013
file name: ~eladb/MyWorkspace/Client/.git/MERGE_MSG
modified: no
user name: eladb host name: Elads-MacBook-Pro-2.local
process ID: 29959 (still running)
While opening file ".git/MERGE_MSG"
dated: Tue Aug 20 10:53:11 2013
NEWER than swap file!
(1) Another program may be editing the same file.
If this is the case, be careful not to end up with two
different instances of the same file when making changes.
Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r .git/MERGE_MSG"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file ".git/.MERGE_MSG.swp"
to avoid this message.
Swap file ".git/.MERGE_MSG.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit, (A)born:
1(答)解决方法:
找到".git/.MERGE_MSG.swp",之后删除即可,然后重新git add .;
git commit -m "";git push master 之后,再执行 git merge branchName 就好啦
2 (问) git push 出现的警告问题
warning: push.default is unset; its implicit value has changed in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the traditional behavior,use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
(答)解决:
git config --global push.default matching或者git config --global push.default simple命令,以后再push就不会有警告了。
下面说一下push.default matching和push.default simple的区别:
push.default设置maching的意思是:git push 会把你本地所有分支push到名称相对应的远程主机上。这意味着可能你会在不经意间push一些你原本没打算push的分支。
push.default设置成simple的意思是:git push仅仅把当前所在分支push到从当初git pull pull下来的那个对应分支上,另外,这个过程也会同时检查各个分支的名称是否相对应。
平常最好用 $ git push origin BRANCH #BRANCH是你远程分支的名字
相应的 git pull
git pull origin BRANCH #BRANCH是你远程分支的名字
3 (问) git merge 合并时遇到的冲突, Automatic merge failed; fix conflicts and then commit the result
$ git merge secondDev
Auto-merging myTest.txt
CONFLICT (content): Merge conflict in myTest.txt
Automatic merge failed; fix conflicts and then commit the result.
自动合并失败。由于在同一行进行了修改,所以产生了冲突。
在冲突处
add 把变更录入到索引中
commit 记录索引的状态
pull 取得远端数据库的内容
然后重新提交
$ git add myTest.txt
$ git commit -m "合并secondDev分支"
# On branch master
nothing to commit (working directory clean)
五、一张很好用git 的图
G.png