I fall in to this situation many times
1. I work on master branch and make some commits
2. Then i use git pull
3. Then i get auto merge fail , conflicting changes
Now suppose there were 5 files which were conflicting. I want to know
1. How can i overwrite those conflicting files with my files on my commit
2. How can i overwrite those with chnages from master
after i do git pull
You can use
to checkout what you fetched
to checkout what you had originally.
to use your version of all conflicted files.