如果git中有超过100M的大文件,上传git服务器的解决办法:

如果git中有超过100M的大文件,上传git服务器的解决办法:

git文件夹中,有一个info目录,目录下有一个exclude文件, 里面就是添加不需要上传git服务器的文件名.

.git -> info -> exclude 目录

# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
/Pods/AMap3DMap/MAMapKit.framework/MAMapKit

注: 不加入git管理的文件,自己需要备份,如果别人克隆你的项目,里面是不会有没有加入管理的文件.

你可能感兴趣的:(如果git中有超过100M的大文件,上传git服务器的解决办法:)