Git 安装及配置

首先下载GIT进行安装,最好不要安装在系统盘C盘里,以免产生不必要的错误。

配置过程:

1.生成public key.

在git bash中执行C:\Program Files (x86)\Get\usr\bin\ssh-keygen.exe -t rsa

如下:

 ssh-keygen  一路回车

      cd ~/.ssh/   进入到保存‘id_rsa.pub’这个文件的目录,具体看执行的日志会提示保存的位置。

      cat id_rsa.pub  抓到的keys复制到gerrit 

 https://gerrit.gmbjdc.com/    打开gerrit用户名下进入setting, 选择SSH public keys 粘贴keys


2.配置环境

在git bash中执行

  • git config --global user.name "Your Name"(git config --global user.name "Lucy")注:username是 gerrit accout.
  • git config --global user.email "[email protected]"(git config --global user.email [email protected])
  • git config --global core.autocrlf input
  • git config --global core.filemode false
  • git config --global core.diff auto
  • git config --global core.status auto
  • git config --global core.branch auto
3.测试服务器连接

ssh [email protected] -p 29418回车后会出现认证提示,提示是否连接成功。

4.克隆项目

  新建文件夹然后将克隆的项目存在里面。

      cd ../          确认回到主目录

      mkdir workarea   创建文件夹

      cd workarea

    git clone ssh://[email protected]:29418/mytest.git 克隆mytest项目

设置git review 系统, 第一次需要回答一个用户名,就是你在review系统的用户名  

 git review -s

如果没有安装 git review 软件包,则手工设置:

       进入mytest目录执行命令 cd mytest

  git remote add gerrit ssh://[email protected]:29418/mytest.git
   scp -p -P 29418 [email protected]:hooks/commit-msg.git/hooks/
由此,git-gerrit配置完成。






你可能感兴趣的:(测试)