3

How many commands does Git have ? In particular :

  • How many high level commands ?
  • How many total commands, including the very low level commands such as git-read-tree` ?

Optional : How many average flags by command ?

VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
Maxime
  • 1,606
  • 1
  • 14
  • 28

1 Answers1

10
git help -a

would list all the commands, but without distinction between porcelain and plumbing commands.
That would be 152 for a git 1.7.11.3

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283