-
-
Notifications
You must be signed in to change notification settings - Fork 605
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
Add an equivalent to git add -u
#933
Comments
the options dialog should solve this. in the options you can hide the untracked files and it will effectively also only stage files visible then |
@extrawurst When I set For commits with a lot of changed files, you could still hide the untracked files and press |
That’s a bug then actually |
@thomkeh so |
Nice, that works for me. |
Is your feature request related to a problem? Please describe.
I often want to stage and commit all changes to files that are already tracked by git, but not add new files. With
git
, this can be done withgit add -u
orgit commit -a
. (I might be the only one who does that though, in which case feel free to ignore this.)Describe the solution you'd like
There is already
status_stage_all
, so what I would like to have isstatus_stage_update
(or something like that) which I can map, for example, tou
.Describe alternatives you've considered
The alternative is going through all files in the status view and either press
down
orenter
; or first staging everything and then removing some changes.The text was updated successfully, but these errors were encountered: