I was working on a feature (on my local master branch), git status showed me that I have 3 modified files uncommitted. That's ok. Then I noticed a bug on the live site. I wanted to abandon my current work, and create a quick fix for the bug.
I created a branch from the remote repo's master: git checkout -b quickfix origin/master
But git status shows that I have 3 modified files. Why is that? I made no update on any files, only created the branch from the remote.
I just want to have a clean branch from remote/master that I can start working on with the quickfix.