Is there a way to make GitHub Desktop rebase a branch against master?
问题 When I choose "update from master" , it creates a merge commit. I'd rather just have it re-base. Is this possible? 回答1: It does not appear that feature is currently included in GitHub desktop. What I normally do is click on the repository name in the drop-down menu in the top left and then click on "open in terminal". Then just follow the instructions here. Update: If you add this to your .gitconfig , GitHub desktop should rebase according to here. [pull] rebase = true Second Update: GitHub