You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read through the manual page of fzf (man fzf)
I have searched through the existing issues
This is pretty New and different from GitFiles, let say i want to get changes made on all the files for the current branch am on.
Not talking about GitFiles[?]
But for actually all the files on the current branch that were changed from the base branch.
You can obtain this by using :
On Files changed that differs from the base branch : git diff --stat $(git merge-base HEAD origin) --name-only
And to get changed per files : <same command as above (witouth "name-only" flag)> --patch -- this_file.py
I have started a draft POC and i was wondering if i can propose a well clean PR for that ?
The text was updated successfully, but these errors were encountered:
man fzf
)This is pretty New and different from GitFiles, let say i want to get changes made on all the files for the current branch am on.
Not talking about GitFiles[?]
But for actually all the files on the current branch that were changed from the base branch.
You can obtain this by using :
git diff --stat $(git merge-base HEAD origin) --name-only
<same command as above (witouth "name-only" flag)> --patch -- this_file.py
I have started a draft POC and i was wondering if i can propose a well clean PR for that ?
The text was updated successfully, but these errors were encountered: