51Testing软件测试论坛

标题: github在linux上的环境搭建 [打印本页]

作者: 梦幻小丑灯    时间: 2018-3-9 14:55
标题: github在linux上的环境搭建
Centos版

1.git的安装:

yum  install  git

yum  的配置详见:http://blog.csdn.net/qq_32345239/article/details/52437938

2.创建工作目录及使用git:

mkdir   /work

cd /work

git  init

git config --global user.name "git账户"

git config --global user.email "邮箱"

3.使用公钥登录github

生成秘钥对: (详细配置信息请点击)

ssh-keygen  -t  rsa

一直回车

进入用户目录:cd  ~

cd .ssh    .ssh是一个隐藏目录

cat  id_rsa.pub

将里面的内容复制出来;

登录github官网:https://github.com/github

登录你的github账号  
[attach]111747[/attach]
[attach]111748[/attach]
[attach]111749[/attach]






配置好上面的步骤:

在/work目录下运行:

git  pull  git@github.com:827464124/pub



设置git  :

git remote add origin  git@github.com:827464124/pub.git

这样以后提交代码就会简便很多:

git  pull origin master      /    git push origin master

其中827464124是属主,pub为仓库名; 可以点击
[attach]111750[/attach]


查看,

如果没有仓库   :

[attach]111751[/attach]

新建一个仓库。



完成以后git的环境已经建好了。






欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2