【笔记】Git克隆大项目时输出日志

前言

  • Git克隆大项目(Large File Storage)时输出日志

安装git-lfs

1
brew install git-lfs

输出简单的日志

1
GIT_TRACE=2 git clone https://github.com/xx/xx

输出更多的日志

1
GIT_CURL_VERBOSE=1 git clone https://github.com/xx/xx

完成

参考文献

CSDN——icyfox_bupt