Error: Cannot pull with rebase: You have unstaged changes
Do git status, this will show you what files have changed. Since you stated that you don’t want to keep the changes you can do git checkout — <file name> or git reset –hard to get rid of the changes. For the most part, git will tell you what to do about changes. For example, … Read more