Working on a Java project with Eclipse I found some strange git behavior. When trying to commit files from my terminal (in zsh) git showed up with this:
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: "src/com/sierisimo/app\bfragments/FragmentMenu.java"
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
deleted: "src/com/sierisimo/app\bfragments/FragmentMenu.java"
And I found a Similar Question
But they are talking about octal numbers and "\b" doesn't look like an octal number...
What do you suggest?