首页 > 系统服务 > 详细

ubuntu下git安装及使用

时间:2016-04-28 00:04:59      阅读:165      评论:0      收藏:0      [点我收藏+]

ssh目录在etc/ssh下

 

如何在本地使用git

http://jingyan.baidu.com/album/295430f1c62c900c7e0050fd.html?picindex=1

 

参考:1.  ubuntu下git安装及使用

    http://www.cnblogs.com/jackge/archive/2013/08/17/3264801.html

   2.  多 SSH Key 管理技巧与 Git 多账户登录问题

    http://blog.csdn.net/forlong401/article/details/50902983

   3.  执行ssh-add时出现Could not open a connection to your authentication agent

    http://www.cnblogs.com/sheldonxu/archive/2012/09/17/2688281.html    ssh-agent bash

   4.  转载:ubuntu下github connect错误解决

  zhoulc@zhoulc-PC:~$ ssh git@github.com
  ssh: connect to host github.com port 22: Connection timed out

解决办法:(linux下)

~$ cd ~

~$ cd .ssh/

~$ touch config

在.ssh目录下创建一个config文件,输入如下内容:

Host github.com
User xxx@163.com (你注册github时的邮箱,这里使用注册的用户名也行)
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
可以把以上内容拷到config文件里面,注意修改你的邮箱,保存并关闭
进行测试是否连接上github.com
zhoulc@zhoulc-PC:~/.ssh$ cd ~
zhoulc@zhoulc-PC:~$ ssh -T git@github.com
The authenticity of host ‘[ssh.github.com]:443 ([207.97.227.248]:443)‘ can‘t be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? y
Please type ‘yes‘ or ‘no‘: yes
Warning: Permanently added ‘[ssh.github.com]:443,[207.97.227.248]:443‘ (RSA) to the list of known hosts.
Hi zhou411424! You‘ve successfully authenticated, but GitHub does not provide shell access.
出现Hi xxx!......表示连接成功。

ubuntu下git安装及使用

原文:http://www.cnblogs.com/tonglin0325/p/5440774.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!