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
HEAD
is dirty, can make agit stash
to hide this filth. I usually dogit stash && git pull --rebase && git stash pop
, that hides the dirt, makes therebase
and dirty again– Jefferson Quesado