git从gitHub下载代码

系统ubuntu 14.04, 已经安装了git 软件

从github下载代码的步骤如下:

1. git clone https://github.com/clab/lstm-parser.git

注意:代码所在的github网址:https://github.com/clab/lstm-parser

截图

不要忘记 git clone https://github.com/clab/lstm-parser.git 后四位的 ".git" 哦

2.  稍微复杂一些的工程都开始整submodule了。无论是直接zip下载,还是clone的,submodule都是空的,这样的运行肯定会提示缺少文件。

 以本例为主:下载的文件夹cnn为空, 下载页面提示了需要同步/cnn

git从gitHub下载代码_第1张图片

所以需要执行的命令是:  git submodule init

                                              git submodule update

3. 在执行  “ git submodule update” 出现错误

fatal: Could not read from remote repository.Please make sure you have the correct access rights.and the repository exists.


此处给出别人的解决方案:为github帐号添加SSH keys

http://blog.csdn.net/leilu2008/article/details/9240555


你可能感兴趣的:(Linux)