I renamed a folder and it is no longer tracked by git. I checked the remote repo that I push to and oddly the folder with the new name is there but there are no contents.
I checked my .gitignore
just out of diligence, and there is nothing that says to ignore the contents of this folder.
I changed it from web1
to web-domain
to be more descriptive.
I use this script to push
// pushes to am-godaddy
p-am-godaddy() {
git add -A .
git commit -m $a
git push am-godaddy master
}