-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
output of git status -z should not be stripped #75
Comments
Do you mean the stripping here shell.py#L29? And to the issue itself: Ouch, that hurts 😦 I suggest an optional parameter for stripping on off? Or do you have a better idea in mind? |
Yes, exactly that stripping (plus an additional one in the parsing of git status -z). |
Enables recognition of deletion lines like [ D aFolder/.jazzignore] Fixes rtcTo#75.
@WtfJoke any chance to have a look at my pull request? |
Yup, sorry. Somehow overlooked it. Thanks for fixing :) |
Since the whole purpose of
git status -z
is to have a formatted output, it is wrong to strip these lines.Currently we miss deletions of
.jazzignore
, because the deletion mark starts at position 2 (blanks indicated as_
below):_D_theFolder/.jazzignore
The text was updated successfully, but these errors were encountered: