git - List of commands with --porcelain option available -
is there public official (or maybe not) list of git
commands, --porcelain
option available? or should manually review each of them in the porcelain commands list?
i've managed google following three:
git status --porcelain git push --porcelain git blame --porcelain
but there more? , if not, can find somewhere information on whether additional appear , when?
upd: here full list of collected available commands --porcelain
option (based on answers below):
git status --porcelain git push --porcelain git blame --porcelain git commit --porcelain git worktree list --porcelain
will try keep up-to-date new information available. please if find new, leave response in comments or answer.
you can combine:
that confirm have:
git commit --porcelain git worktree list --porcelain
for more on meaning of porcelain, see answer "what term “porcelain” mean in git?"
the meaning of
--porcelain
here "produce output suitable consumption porcelain scripts".
note git blame
options can passed around other commands. why git annotate
also has --porcelain
option.
also, grepping porcelain
in documentation return git ls-files
, has not such option, refers instead git-status --porcelain
, git-diff-files --name-status
more user-friendly alternatives.
Comments
Post a Comment