I\'m in the process of learning github on mac (command-line) and whenever I do git pull origin master i get this
git pull origin master
# Please enter a commit message
I fixed this problem by executing following steps
Remove #MERGE_MSG#
rm .git/\#MERGE_MSG#
Remove MERGE_HEAD
rm .git/MERGE_HEAD
Additionally, I explicitly set git's editor to an editor that I am familiar with vim (you can set nano)
`git config --global core.editor "vim"`