git 下载代码
github為代碼版本管理庫(kù),我們可以在上面建立自己的工程由服務(wù)器自動(dòng)為我們管理。
但是作為小白我們最常遇見的操作是,在githua上下載大神們的代碼學(xué)習(xí)學(xué)習(xí)。
下面是從github上下載代碼的操作:
如果想從 github 上匿名獲取某個(gè) repo, 一般都會(huì)直接到該 repo 的網(wǎng)頁(yè)復(fù)制網(wǎng)頁(yè)中給的 HTTPS URL. 但是, 不知道 github 抽風(fēng)還是怎么了, 獲取總是報(bào)錯(cuò):
$ git clone https://github.com/ideawu/ssdb.git
Initialized empty Git repository in /xxx/.git/
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
只好嘗試使用 SSH 方式(非 github 登錄用戶看不到 SSH 方式的 URL):
$ git clone git@github.com:xxx/ssdb.git
Initialized empty Git repository in /xxx/ssdb/.git/
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
fetch-pack from 'git@github.com:xxx/ssdb.git' failed.
顯然, 這需要輸入賬號(hào)和密碼. 我記得 github 改版之前, 是提供了 Read-only URL 的, 不知道為什么改版之后就不提供了?! 不過(guò), 你還是可以手工拼出只讀 SSH:
git clone git://github.com/ideawu/ssdb.git
把項(xiàng)目的網(wǎng)址中的"https://"替換成"git://", 然后在末尾加上".git".
?
?
哈哈,此文為轉(zhuǎn)發(fā)文檔。我是為了以后查找方便,轉(zhuǎn)貼過(guò)來(lái)。
致敬原帖:http://www.ideawu.net/blog/archives/745.html
轉(zhuǎn)載于:https://www.cnblogs.com/zeng2013/p/4118258.html
總結(jié)
- 上一篇: 图解Nosql(hbase)与传统数据库
- 下一篇: JavaWeb学习之Path总结、Ser