在使用SourceTree上传资料的时候,遇到

   
   
   
   
  1. POST git-receive-pack (chunked) 

看到这样一则

   
   
   
   
  1. This is a bug in Git; when using HTTPS it will use chunked encoding for uploads above a certain size. Those do not work. 
  2.  
  3. A trivial fix is to tell git to not chunk until some ridiculously large size value, such as: 
  4.  
  5. git config http.postBuffer 524288000 

于是尝试 .git/config 加入

   
   
   
   
  1. [http] 
  2.     postBuffer = 524288000 

主要是限制文件大小的原因.