Git Commit changes before merge
You have three options:
Commit the change using
git commit -m "My message"Stash it
git stashgit stash popDiscard the local changes
using git reset --hardgit checkout -t -f remote/branchLast updated