这里我就只说说从安装到链接到github库时出现的错误,以及如何解决html
1. 下载github,安装后你就能够在系统中右键看到 Gui 和 Bush按钮node
2. 此时你可能会去尝试着去链接你在github中新建的工程,clone一下。可能会报错:github Permission denied (publickey)git
OpenSSH_5.3p1 Debian-3ubuntu7, OpenSSL 0.9.8k 25 Mar 2009 debug1: Reading configuration data c/Document and Setting/xmaomao/.ssh/config debug1: Applying options for github.com debug1: Reading configuration data /etc/ssh/ssh_config debug1: Applying options for * debug1: Connecting to github.com [207.97.227.239] port 22. debug1: Connection established. debug1: permanently_set_uid: 0/0 debug1: identity filec/Document and Setting/xmaomao/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.1p1 Debian-5github2
debug1: match: OpenSSH_5.1p1 Debian-5github2 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3p1 Debian-3ubuntu7
debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Host 'github.com' is known and matches the RSA host key. debug1: Found key in /root/.ssh/known_hosts:1 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey debug1: Offering public key: /root/.ssh/id_rsa debug1: Authentications that can continue: publickey debug1: No more authentication methods to try.
Permission denied (publickey).
这里贴上安装以后须要执行的命令:https://help.github.com/articles/create-a-repo你们也能够直接按照这内容傻瓜式操做。(如访问不了,就去你的host文件里添加:github
#github
207.97.227.239 github.com
65.74.177.129 www.github.com
207.97.227.252 nodeload.github.com
207.97.227.243 raw.github.com
204.232.175.78 documentcloud.github.com
204.232.175.78 pages.github.com
)ubuntu
3. 缘由在于本地文件中没有在github注册的ssh协议----publickey值ssh
在这里Windows for Github提供了一键式帮助。你们能够参考:http://www.cnblogs.com/hielvis/archive/2012/06/05/2535495.htmlide
我首先并无参照那博主的步骤去解决,而是手动去生成publickey。ui
先去https://help.github.com/articles/error-permission-denied-publickey看看,里面针对github Permission denied (publickey)报错提供了解决方案spa
主要思路: 1. 先链接git@github.com,若是报错就添加一个publickey值debug
2. 此时添加的publickey值是不能用的,那就要本身去注册一个
3. 使用ssh-keygen -lf ~/.ssh/id_rsa.pub命令来建立一个id_rsa文件,具体位置以下(WIn XP下):
4. 而后打开它,将内容复制到:https://github.com/settings/ssh -> Add SSH KEY.
最后重复刚开始的操做就OK了,能够链接到本身建立的库
往下就不帖命令了,你们可在Github官网中找到现成的