git reset --hard
will get rid of all your local changes, but please make sure there are no changes you want to keep before you run that.
a safer way might just be to do:
git stash
then you can carry on with a full cli rebuild.
git reset --hard
will get rid of all your local changes, but please make sure there are no changes you want to keep before you run that.
a safer way might just be to do:
git stash
then you can carry on with a full cli rebuild.