在Git中添加一个项目

Posted Winstone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Git中添加一个项目相关的知识,希望对你有一定的参考价值。

首先保证Git服务器正确配置,管理员机器可正常连接并使用Git。

第一步:在服务器上新建一个项目仓库

切换到git用户: [email protected]:/home/git$ su - git $ cd /home/git/repositories $ mkdir teamwork.git $ cd teamwork.git $ git init --bare $ exit

现在只是在服务器上新建了一个空仓库

第二步:配置项目权限

修改管理员机器上的gitosis.conf权限配置文件:

... [group Monitor] writable = Monitor members = [email protected] ...

将修改后的配置文件上传到Git服务器上。

第三步:初始化客户端本地项目,并上传到Git服务器

进入本地项目所在路径,打开Git Bash并输入:

[email protected]:~/work/Monitor$ git init [email protected]:~/work/Monitor$ git add . [email protected]:~/work/Monitor$ git commit -am “initial version” [email protected]:~/work/Monitor$ git remote add origin [email protected]<server>:Monitor.git [email protected]:~/work/Monitor$ git push origin master

等待客户端将项目文件上传到Git服务器

其他客户端机器下载该项目

直接用Clone命令即可

其他客户端机器更新该项目

最简单的方式:在Git Bash中输入Git merge origin/master

参考:

  1. http://blog.csdn.net/ice520301/article/details/6142503

  2. http://www.360doc.com/content/13/0814/10/9171956_307028720.shtml

以上是关于在Git中添加一个项目的主要内容,如果未能解决你的问题,请参考以下文章

将本地已有项目 添加到 git管理中去

Jenkins项目新建-git插件使用

sh 将git repo的整个历史记录添加到另一个带子树的git项目中

Git 子模块:git submodule

将 Android 项目转移到 Git 私有服务器

git submodule 怎么用