命令 Remote git remote set-url origin
[email protected]:xfans/VirtualApp.git
git push origin master
Upstream git remote add upstream
[email protected]:asLody/VirtualApp.git
git fetch upstream
git merge upstream/master
快速下载android frameworks源码 git clone --branch android10-release
[email protected]:mirrors/platform_frameworks_base.git --depth 1
背景 有时候需要在GitHub上下载单个目录里面的文件,而不需要去克隆整个项目,太大的项目克隆起来太慢。
解决方案 GitHub是支持SVN访问的,所以可以使用SVN下载单个目录。
下载master分支 复制浏览器地址栏中的地址,如:
https://github.com/bumptech/glide/tree/master/integration
将tree改为trunk即可。
https://github.com/bumptech/glide/trunk/integration
下载其他分支 如:
https://github.com/bumptech/glide/tree/3.0/integration
将tree改为branches即可。
https://github.com/bumptech/glide/branches/3.0/integration
然后svn checkout 即可。