Im not able to do a GIT stash because its saying i need to merge first. There are a few files that need to be merged. But my issue is i don't want to push those changes yet. I've tried doing git stash but it complains that some files are not merged yet.
However, i don't want to merge the files because I want to stash these changes for like 3 weeks while i do other work. How can i Stash my changes and simply checkout cleanly without doing a commit ?
here is what i have tried:
git stash save "my work"
src/com/core/HomePageActivity.java: needs merge
src/com/core/PageActivity.java: needs merge
src/com/core/analytics/PageMaker.java: needs merge
results of git status:
git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: lint.xml
modified: src/com/lib/Signal.java
modified: src/com/lib/Report.java
modified: src/com/lib/core/Menu.java
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add <file>..." to mark resolution)
both modified: src/com/core/HomePageActivity.java
both modified: src/com/core/PageActivity.java
both modified: src/com/core/analytics/PageNameMaker.java
both modified: src/com/store/MapActivity.java
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: src/com/score/TiledActivity.java
modified: src/com/core/store/Action.java