当前位置:   article > 正文

github克隆下载完整项目代码、某个文件夹、单个文件_github下载其中一个文件夹

github下载其中一个文件夹
一、克隆完整仓库

  克隆某一仓库,以此https://github.com/ultralytics/yolov5为例

  克隆完整仓库:

git clone git@github.com:BolajiAyodeji/nextjs-blog.git
  • 1

  查看仓库所有分支:
  首先cd到下载目录内部,然后查看分支:

git branch -a
  • 1

https://raw.githubusercontent.com/ultralytics/yolov5/master/detect.py

如何克隆指定的分支项目
git clone -b <branchname> <remote-repo-url>
或者
git clone --branch <branchname> <remote-repo-url>
  • 1
  • 2
  • 3

branchname:分支名称, -b 是 --branch 的别名
remote-repo-url:项目master链接
例如:

git clone --branch v7.0 https://github.com/ultralytics/yolov5
或者
git clone -b v7.0 https://github.com/ultralytics/yolov5
  • 1
  • 2
  • 3
二、下载项目下某个文件夹
1、首先安装svn
sudo apt-get install subversion
  • 1
2、导出项目下的文件夹URL

例如:

https://github.com/ultralytics/yolov5/tree/master/models
  • 1
3、修改文件夹URL

将其中tree/master替换成trunk,修改为如下:

https://github.com/ultralytics/yolov5/trunk/models
  • 1
4、svn checkout下载
svn checkout https://github.com/ultralytics/yolov5/trunk/models
  • 1
三、下载项目下某个文件

github 打开某个文件
在这里插入图片描述
点击raw或者download打开文件,浏览器查看文件链接
在这里插入图片描述然后打开终端,到要保存下载文件的目录:

wget https://raw.githubusercontent.com/ultralytics/yolov5/master/models/yolo.py
  • 1

wget -P dir url
参数:-p 下载到指定目录dir
在这里插入图片描述
如图下载完毕。

git常用命令
git config --global user.name xxx:设置全局用户名,信息记录在~/.gitconfig文件中
git config --global user.email xxx@xxx.com:设置全局邮箱地址,信息记录在~/.gitconfig文件中
git init:将当前目录配置成git仓库,信息记录在隐藏的.git文件夹中
git add XX:将XX文件添加到暂存区
git add .:将所有待加入暂存区的文件加入暂存区
git rm --cached XX:将文件从仓库索引目录中删掉
git commit -m "给自己看的备注信息":将暂存区的内容提交到当前分支
git status:查看仓库状态
git diff XX:查看XX文件相对于暂存区修改了哪些内容
git log:查看当前分支的所有版本
git reflog:查看HEAD指针的移动历史(包括被回滚的版本)
git reset --hard HEAD^ 或 git reset --hard HEAD~:将代码库回滚到上一个版本
git reset --hard HEAD^^:往上回滚两次,以此类推
git reset --hard HEAD~100:往上回滚100个版本
git reset --hard 版本号:回滚到某一特定版本
git checkout — XX或git restore XX:将XX文件尚未加入暂存区的修改全部撤销
git remote add origin git@git.acwing.com:xxx/XXX.git:将本地仓库关联到远程仓库
git push -u (第一次需要-u以后不需要):将当前分支推送到远程仓库
git push origin branch_name:将本地的某个分支推送到远程仓库
git clone git@git.acwing.com:xxx/XXX.git:将远程仓库XXX下载到当前目录下
git checkout -b branch_name:创建并切换到branch_name这个分支
git branch:查看所有分支和当前所处分支
git checkout branch_name:切换到branch_name这个分支
git merge branch_name:将分支branch_name合并到当前分支上
git branch -d branch_name:删除本地仓库的branch_name分支
git branch branch_name:创建新分支
git push --set-upstream origin branch_name:设置本地的branch_name分支对应远程仓库的branch_name分支
git push -d origin branch_name:删除远程仓库的branch_name分支
git pull:将远程仓库的当前分支与本地仓库的当前分支合并
git pull origin branch_name:将远程仓库的branch_name分支与本地仓库的当前分支合并
git branch --set-upstream-to=origin/branch_name1 branch_name2:将远程的branch_name1分支与本地的branch_name2分支对应
git checkout -t origin/branch_name 将远程的branch_name分支拉取到本地
git stash:将工作区和暂存区中尚未提交的修改存入栈中
git stash apply:将栈顶存储的修改恢复到当前分支,但不删除栈顶元素
git stash drop:删除栈顶存储的修改
git stash pop:将栈顶存储的修改恢复到当前分支,同时删除栈顶元素
git stash list:查看栈中所有元素
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
github上传大文件报错后删除依旧报错

输入git log,找到上次提交的前面一次提交ID
执行git reset --soft commit id
再进行git pull合并一下版本
执行git rm -f 大文件
再就是git add,git commit,git push等操作。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/620062
推荐阅读
相关标签
  

闽ICP备14008679号