We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The forgit::diff function aka gd does not support git move or rename actions. Minimal reproducible example:
forgit::diff
gd
mkdir myrepo cd myrepo git init echo "wow" > foo.txt git add foo.txt git commit -m "Commit 1" git mv foo.txt bar.txt echo "oh" > baz.txt git add baz.txt
Calling gd --staged on this repo shows the following:
gd --staged
Obviously the output of git diff --name-status is not correctly parsed.
git diff --name-status
The text was updated successfully, but these errors were encountered:
@wfxr I made PR #189 to fix this. Please let me know if it can be merged.
Sorry, something went wrong.
5093c18
Catching fish up on a bunch of new features
d0b3cfc
Checked in a bunch of things that were only for bash #189 #186 #185 #190 #188
wfxr
No branches or pull requests
Check list
Environment info
Problem / Steps to reproduce
The
forgit::diff
function akagd
does not support git move or rename actions. Minimal reproducible example:Calling
gd --staged
on this repo shows the following:Obviously the output of
git diff --name-status
is not correctly parsed.The text was updated successfully, but these errors were encountered: