Is there a public official (or maybe not) list of git
commands, for which --porcelain
option is available? Or should I manually review each of them in the porcelain commands list?
I've managed to google the following three:
git status --porcelain
git push --porcelain
git blame --porcelain
But is there any more? And if not, can I find somewhere the information on whether any additional would appear and when?
UPD:
So here is the full list of collected currently available commands with --porcelain
option (based on the answers below):
git annotate --porcelain
git blame --porcelain
git commit --porcelain
git push --porcelain
git status --porcelain
git worktree list --porcelain
Will try to keep it up-to-date with the new information available. Please if you find any new, leave a response in comments or as an answer.