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 ?
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.pyI have started a draft POC and i was wondering if i can propose a well clean PR for that ?