- 论坛徽章:
- 0
|
今天按照tutorial,我们该学习collaboration,也就是合作开发!
依然以例子进行学习哦……
1.clone项目
假设我的好友bass要参与我的开发当中,他可以先克隆我的项目在他的目录中
bass@wjh-laptop:~$ git clone /home/weijianhua/git_test/git4test1 myrepo
这样在bass用户的目录下就有了git4test1项目的克隆项目myrepo,他可以在此开发。
假设他加了一句代码:
printf("modify by bass for git test!");
main.c变成:
bass@wjh-laptop:~/myrepo$ cat -n main.c
1 #include
2 int main()
3 {
4 printf("modify by bass for git test!");
5 system("cat /proc/version");
6 printf("test for git,step 2\n");
7 printf("test for git,step 1\n");
8 return 0;
9 }
然后使用以前学习的方法git commit -a提交bass自己的代码。
2.同时开发
在bass修改代码的过程中,我也在同时开发,修改了我的项目目录中的main.c代码:
weijianhua@wjh-laptop:~/git_test/git4test1$ cat -n main.c
1 #include
2 int main()
3 {
4 printf("collaboration test with bass!");
5 system("cat /proc/version");
6 printf("test for git,step 2\n");
7 printf("test for git,step 1\n");
8 return 0;
9 }
修改完后提交代码,git commit -a
3.pull我们的代码
bass提交完代码后,告诉我去要合并我们俩开发的代码:
weijianhua@wjh-laptop:~/git_test/git4test1$ cd /home/weijianhua/git_test/git4test1/
把bass修改的代码合并到我的当前开发分支中:
weijianhua@wjh-laptop:~/git_test/git4test1$ git pull /home/bass/myrepo master
From /home/bass/myrepo
* branch master -> FETCH_HEAD
Auto-merged main.c
CONFLICT (content): Merge conflict in main.c
Automatic merge failed; fix conflicts and then commit the result
上面的信息显示代码有冲突,因为在bass开发的过程中,我也对项目代码做了修改;我们修改的地方有些冲突!这些需要自己手动来修改:
查看main.c:vim main.c
#include
int main()
{
>>>>>> 338c9a8914c498144577bdf07e844e8a6a19b8ab:main.c
system("cat /proc/version");
printf("test for git,step 2\n");
printf("test for git,step 1\n");
return 0;
}
手动修改掉这些合作开发中的代码冲突,修改后的代码:
weijianhua@wjh-laptop:~/git_test/git4test1$ cat -n main.c
1 #include
2 int main()
3 {
4 printf("collaboration test with bass!");
5 printf("modify by bass for git test!");
6 system("cat /proc/version");
7 printf("test for git,step 2\n");
8 printf("test for git,step 1\n");
9 return 0;
10 }
再次合并:
weijianhua@wjh-laptop:~/git_test/git4test1$ git commit -a
Created commit c0a1312: Merge branch 'master' of /home/bass/myrepo
4.查看log
查看log来了解今天对git的学习情况:
weijianhua@wjh-laptop:~/git_test/git4test1$ git log
commit c0a1312587b4323b0014b64c62876744bb15faa6
Merge: 8f828a0... 338c9a8...
Author: wei
Date: Tue Apr 21 21:58:30 2009 +0800
Merge branch 'master' of /home/bass/myrepo
Conflicts:
main.c
commit 8f828a0d08267e3d5e09080f5e380e92e061f46c
Author: wei
Date: Tue Apr 21 21:55:03 2009 +0800
by wei for collaboration 20090421 wei339@gmail.com
commit 338c9a8914c498144577bdf07e844e8a6a19b8ab
Author: bass
Date: Tue Apr 21 21:51:59 2009 +0800
modify by bass for git test 20090421
commit 2f37934d50e51433a47b2b88ec78b86c6fb0b44e
Author: wei
Date: Mon Apr 20 13:07:27 2009 +0800
add:output kernel version by wei 20090420 wei339@gmail.com
commit ae465db256a3e1775807679113cbe420d3803966
Author: wei
Date: Fri Apr 17 21:43:33 2009 +0800
version 1.0 by wei for test git step 2
……
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/65429/showart_1906092.html |
|