3
How can I get new files from the repository without committing Merge branch 'master' of...? 
I’m using:
git pull
It pulls everything cool, however, creates this merge commit. How do I only have commits from the remote repository, ignoring this cool merge commit?
If your
HEADis dirty, can make agit stashto hide this filth. I usually dogit stash && git pull --rebase && git stash pop, that hides the dirt, makes therebaseand dirty again– Jefferson Quesado