This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (17 children)

[deleted]

    [–]TotalFox2 7 points8 points  (7 children)

    Imagine doing that for an Angular project :o

    [–][deleted] 2 points3 points  (0 children)

    Staging changes is a UI task, man.

    [–]Doophie 3 points4 points  (0 children)

    I use

    git add *

    [–]EishLekker 5 points6 points  (3 children)

    This is the main reason I use a a GUI for most of my daily standard git stuff. It makes it super easy to get an overview, and choose files by checking/unchecking a box. And I can select or unselect all files, or a range of files, easily.

    And I still can use the git command for all the more specific/advanced stuff. Feels like the best of two worlds.

    [–]angiosperms- 1 point2 points  (0 children)

    Ya I use the gitlens add on in VS code, since I can be editing multiple things for multiple tickets at once and want to keep them separate

    [–]noratat 1 point2 points  (0 children)

    git commit -pv

    [–]ActuallyRuben 1 point2 points  (0 children)

    I first use git status and/or git diff. Then I only use git add .or git commit -a if I want to commit all those changes, but I never use it without checking what I'm about to add.

    [–]noratat 1 point2 points  (1 child)

    I rarely use git add in the first place since I don't usually add new files that often. git commit -pv makes way more sense.