So I'm learning the joys of git add -p
. I used to use Sourcetree or similar GUI tool to review changes as part of git add
, but now I'm getting better with it on the command line.
However, I'm frustrated that I can't add the untracked files in the same command. I'd like it if there was some option like: git add -p --include-untracked
that then treats them as a patch like the rest of it.
Is there a better way to do this as a single command?