I made a mistake on my .gitignore file and accidentally started to push up a large directory with a very large amount of files (to Github). Realizing what I did I canceled the push (ctrl + c) partway through.
I ran git reset --soft HEAD^ and git reset to revert the commit and unstage my files. I then updated my .gitignore file.
Checking git status again I see all the correct files are ready to be pushed up to Github again, so I added, committed and pushed them.
Thing is git push origin master now seems to hang - nothing happens. I'm guessing because I canceled the last push partway through.
Would anyone know how I could fix this?