I am working with a bunch of files but would not like to commit some of them.
Rather than commit each file individually is there a way I can exclude the files I do not want to commit?
From reading similar questions on SO, I've tried various instances of git stash
but have not been able to get them to work, eg:
git stash file.ext
git stash -- file.ext
git stash push "file.ext"
git stash push -- file.ext
Would anyone know how I could do this?