摘要:root@ubuntux86:# git submodule update --init --recursive Cloning into '/work/VisionFive2/buildroot'... fatal: the remote end hung up unexpectedly fata
阅读全文
摘要:方法一、将github上demo的html文件链接复制到,打开下面网址后出现的输入栏中,点击按钮即可。 http://htmlpreview.github.io/ 方法二、在HTML文件的地址前面加上htmlpreview.github.io/? 比如 http://htmlpreview.gith
阅读全文
摘要:采用ie浏览器打开DownGit,不用google https://minhaskamal.github.io/DownGit/#/home
阅读全文
摘要:子模块的添加添加子模块非常简单,命令如下: git submodule add <url> <path> 其中,url为子模块的路径,path为该子模块存储的目录路径。 执行成功后,git status会看到项目中修改了.gitmodules,并增加了一个新文件(为刚刚添加的路径) git diff
阅读全文
摘要:解决 使用Git LFS 在官网 https://git-lfs.github.com/ 下载git-lfs-windows-v2.8.0.exe并安装。 新开一个bash命令行输入git lfs install安装 跟踪你要push的大文件git lfs track "*.h5",这时会生成一个.
阅读全文
摘要:文件编辑中常用快捷键:ctrl+X 离开nano软件,若有修改过的文件会提示是否保存;选择 :yes又提示:file name to write :***.launch ,选择:Ctrl+T 在下一个界面用 “上下左右” 按键 选择要保存的文件名, 然后直接点击 “Enter” 按键即可保存. ct
阅读全文
摘要:No more forks can be created. These forks already exist: Jump to... Step-1: Clone the original repo to your local machine Step-2: Create a new empty r
阅读全文
摘要:参考 https://github.com/liyinchigithub/readme 文字高亮 文字高亮功能能使行内部分文字高亮,使用一对反引号。 语法: `linux` `网络编程` `socket` `epoll` 效果:linux 网络编程 socket epoll 也适合做一篇文章的tag
阅读全文
摘要:git clone 时选择的是SSH链接,使用HTTPS链接地址进行下载就可以啦! 更改url 将远程 URL 从 SSH 切换到 HTTPS 打开 Git Bash。 将当前工作目录更改为您的本地仓库。 列出现有远程仓库以获取要更改的远程仓库的名称。 $ git remote -v > origi
阅读全文