I have a folder in my local repo called var, which sits in the root directory. As with most var folders, it's full of junk, several of which files are too large for Git to push.
I've included the following in my .gitignore in several attempts:  
var   
var/  
var/log/  
var/log  
var/
I ran:
git rm -r --cached .   
git update-index   
git update-index --assumed-unchanged
in various combinations with no joy! Any suggestions?
 
     
    