如何下载GitHub端的资源

Preparations:

1,Frist of all , we need to register a account in https://github.com.

2, Secondly , create a repository by click the "ADD" icon besides your userName.

Then , If we want to sync the repository to native , here I use Linux OS:

1, configure the git , create SSH key

ssh-keygen -t rsa -C "[email protected]"

The generated key is saved under ~/.ssh/id_rsa.pub, copy the key

2,back  to github , click into AccountSettings->choose SSH keys->add SSH key , tittle could be whatever,paste the key.

3, check whether the key works,

ssh -T <a href="\"mailto:[email protected]\"" target="\"_blank\"">[email protected]</a>

4, configure the userName and email

git config --global user.name "your name"

git config --global user.email "youemail@your email.com"

5, copy the repository created in github

git clone "https://github.com/your_name/your repository‘s name.git"

时间: 2024-10-09 20:32:49

如何下载GitHub端的资源的相关文章

git部分下载github上的资源

注意以下命令要在git bash下进行,不要是cmd,或者是powershell. cd 到某个目录下 git init git  remote add -f origin <url> git config core.sparsecheckout  true echo "you_forder1/subforder" >> .git/info/sparse-checkout echo "you_forder2/subforder" >&g

打造百度网盘备份利器:自动备份Linux VPS文件和多线程下载百度网盘资源

前一段时间国内的各大网盘百度云盘,金山快盘,360云盘,华为网盘为争夺用户上演空间容量博弈,网盘商们还固执地以为中国的网民都不懂网络技术,可以像某公司那样用一些数字的手段来忽悠用户,参与到网盘商的数字游戏中的公司都心知肚明. 在不需要增加任何网盘上传下载带宽和硬件设备投入的情况下,又可以用TB级别网盘这样的字眼来夺人眼球,在网络上大肆炒作一番,这比用钱买广告来推广网盘有效得多了.在这场网盘炒作中,率先“挑起事非”的两家百度网盘和360网盘获利最多. 尤其是百度网盘,应该算正式成长为国内网盘界中老

springboot+spring security +oauth2.0 demo搭建(password模式)(认证授权端与资源服务端分离的形式)

项目security_simple(认证授权项目) 1.新建springboot项目 这儿选择springboot版本我选择的是2.0.6 点击finish后完成项目的创建 2.引入maven依赖  下面是我引入的依赖 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=&q

使用Android studio下载github上的工程及问题解决

Android studio内置了github的插件,可以直接下载github上的工程,感觉好爽啊.具体怎么做呢?1.如图所示操作,如果是初次使用会提示输入用户名密码. 2.等android studio读取到你github里面的工程列表后就可以选择了,选择之后点击clone,如果工程比较大,花费的时间会长一些. 3.打开这个新工程后,发现根本就没有东西啊,别急,还需要一点本地的配置.在左上角选择project视图 4.右键点击工程,选择Open Module Settings 5.在Proje

简单的网络爬虫,下载GitHub的头像

基于Web Magic的一个爬虫框架(https://github.com/code4craft/webmagic)开发的,可以下载github的用户的头像. 使用Apache的HttpClient对页面进行请求,用JSoup对下载来的html文档进行过滤找到合适的图片链接,再发送一次HttpRequest去下载图片并保存到本地. 1 package webcrawler.webcrawler; 2 import java.awt.im.InputContext; 3 import java.i

使用Android studio下载github上的工程及问题解决 2015-06-03 16:39:44

使用Android studio下载github上的工程及问题解决 2015-06-03 16:39:44 http://blog.chinaunix.net/uid-20771867-id-5066613.html 分类: Android平台 Android studio内置了github的插件,可以直接下载github上的工程,感觉好爽啊.具体怎么做呢?     1.如图所示操作,如果是初次使用会提示输入用户名密码.      2.等android studio读取到你github里面的工程

Windows平台上通过git下载github的开源代码

常见指令整理: (1)检查ssh密钥是否已经存在.GitBash. 查看是否已经有了ssh密钥:cd ~/.ssh.示例中说明已经存在密钥 (2)生成公钥和私钥 $ ssh-keygen -t rsa -C "[email protected]"按3个回车,密码为空. Your identification has been saved in /home/tekkub/.ssh/id_rsa.Your public key has been saved in /home/tekkub/

Git和GitHub在线学习资源整理(转)

原文地址:http://blog.csdn.net/duqi_2009/article/details/12646711 电子书 GotGitHub Git Workflow 文章 GitHub Fundamental visual-git-guide 图形化的Git参考手册 Linux下使用git命令以及github项目 教程 Try Git Git Immersion 入门指导 Top 10 Git Tutorials for Beginners A Hacker's GIT intrucd

织梦5.7下载远程图片和资源无效全套最新解决方案

1.织梦5.7下载远程图片和资源无效可能是因为服务器上禁用了fsockopen() 函数造成的,在用fsockopen()的地方用 stream_socket_client()代替就可以了. 具体修改地方是 /include/dedehttpdown.class.php 第507行 $this->m_fp = @fsockopen($this->m_host, $this->m_port, $errno, $errstr,10); 替换为 $this->m_fp = @stream