I\'ve merged a master branch from a friend\'s repository into my working directory into branch_a using:
git pull my_friend master
I\'ve discove
does pull command commit?
Yes, it does. Pull is a wrapper over fetch and merge. If you want to see other's changes before merging, you can just fetch
fetch
merge