git@git 项目多人合作开发设置

  1. 创建账号

    进入网页 http://www.oschina.net 创建oschina 账号

    进入网页 http://git.oschina.net 创建gitoschina 账号

    2.创建 ssh-key

    登录 gitoschina账号 点击个人设置 公钥ssh-key
    你可以按如下命令来生成sshkey
    ssh-keygen -t rsa -C "[email protected]" # Creates a new ssh key using the provided email
    # Generating public/private rsa key pair...
    查看你的public key,并把他添加到 Git @ OSC http://git.oschina.net/keys
    cat ~/.ssh/id_rsa.pub
    # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
    添加后,在终端(Terminal)中输入
    ssh -T [email protected]
    若返回
    Welcome to Git@OSC, yourname!
    则证明添加成功。

    3.添加项目开发者

    在项目---> 管理  ----> 人员管理   ----> 添加人员

   ( 添加人员的git@git账号)

    4.clone code

    git chone 项目的 ssh对应的url

    例如:git clone [email protected]/sccx/Mychat.git


  5.向远程服务器添加代码

    1.在服务器上创建项目(名称   testProject)

    2.在本地创建项目名称同上

    3.在本地git 初始化   git init

    4.在本地 添加  git add

    5.在本地提交   git commit -am “ssss”

    6.添加到远程服务器   git remote add origin [email protected]:sccx/Adpter.git

    7.同步远程   git pull -u origin master

    8.推送到远程  git push -u origin master


你可能感兴趣的:(git@git 项目多人合作开发设置)