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
Using --name-only for git diff only shows the path for the new location.
To test:
git --no-pager diff --name-only -M95 origin/main..HEAD
You'll see something like
new-module/src/main/kotlin/com/example/Renamed.kt
AMD does not mark both modules (old-module and new-module) as changed.
A fix could be switching from --name-only to --name-status. Using the same rename commit as before:
--name-only
--name-status
git --no-pager diff --name-status -M95 origin/main..HEAD
R100 old-module/src/main/kotlin/com/example/Old.kt new-module/src/main/kotlin/com/example/Renamed.kt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using --name-only for git diff only shows the path for the new location.
To test:
git --no-pager diff --name-only -M95 origin/main..HEAD
You'll see something like
AMD does not mark both modules (old-module and new-module) as changed.
A fix could be switching from
--name-only
to--name-status
. Using the same rename commit as before:git --no-pager diff --name-status -M95 origin/main..HEAD
You'll see something like
The text was updated successfully, but these errors were encountered: