Most of the time when I try to checkout another existing branch, Git doesn\'t allow me if I have some uncommitted changes on the current branch. So I\'ll have to commit or s
In case you don't want this changes to be committed at all do git reset --hard.
git reset --hard
Next you can checkout to wanted branch, but remember that uncommitted changes will be lost.