码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu连结远程github

时间:2017-09-10 00:14:55      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:linux   ubuntu   centos   远程连接   git   

一、Ubuntu安装git软件

1、安装git和ssh

wangpeng@ubuntu:~$ sudo apt install git
wangpeng@ubuntu:~$ sudo apt install ssh

2、配置git用户信息

wangpeng@ubuntu:~$ git config --global user.name "wangpengtai"
wangpeng@ubuntu:~$ git config --global user.email "wangpengtai@163.com"

注意:

wangpeng@ubuntu:~/devops$ git commit -m "add centos6_security.sh"
*** Please tell me who you are.
Run
  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"
to set your account‘s default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got ‘wangpeng@ubuntu.(none)‘)

不配置这会提示的!告诉你使用方法。

二、Ubunu本地创建ssh密钥

wangpeng@ubuntu:~$ ls -al

查看下有没有.ssh文件,Ubuntu新系统不带ssh,所以没有,手动创建一个或者ssh连接一台服务器,建立一下连结就行了。

wangpeng@ubuntu:~$ ssh-keygen -t rsa -C "wangpengtai@163.com"

一直回车下去,在.ssh文件夹中找到id_rsa.pub,将其内容拷贝下来。

技术分享三、github上添加ssh key密钥

技术分享

技术分享

四、将github上的库克隆到本地

1、下载远程仓库

仓库可以新建一个,现在有现成的不弄了。

wangpeng@ubuntu:~$ git clone  git@github.com:wangpengtai/devops.git

首次建立连接需要确认来自github连接的信息。

2、本地代码推送到github

wangpeng@ubuntu:~/devops$ git add centos6_security.sh 
wangpeng@ubuntu:~/devops$ git commit -m "add centos6_security.sh"
wangpeng@ubuntu:~/devops$ git commit -m "add centos6_security.sh"
wangpeng@ubuntu:~/devops$ git push origin master

技术分享

本文出自 “LINUX” 博客,请务必保留此出处http://wangpengtai.blog.51cto.com/3882831/1964031

Ubuntu连结远程github

标签:linux   ubuntu   centos   远程连接   git   

原文地址:http://wangpengtai.blog.51cto.com/3882831/1964031

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!