您的位置:首页 > 其它

ubuntu下git安装及使用

2016-04-27 22:44 387 查看
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!......表示连接成功。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: