Jeff King <peff@xxxxxxxx> writes: > They _could_, but keep in mind that the argument is not strictly a path. > It is a pathspec that may match multiple paths. So: > > git add -p path/to/ > > for example will pick up the tracked files in path/to/, but not your > untracked one. The corresponding command w/o "-p", i.e., "git add path/to/", will pick up both tracked and untracked ones from the named directory, while honoring the ignore settings. So I suspect it might feel more natural if "-p" followed suit. Not that I feel strongly either way. The command has only worked with already tracked files since its inception and nobody complained in the past 15 years or so, probably because nobody cared that much for relatively rare event of creating a new file and adding it. Thanks.