Git cheat sheets are a dime-a-dozen but I think this one is awfully concise for its scope.

  • Visually covers branching (WITH the commands – rebasing the current branch can be confusing for the unfamiliar)
  • Covers reflog
  • Literally almost identical to how I use git (most sheets are either Too Much or Too Little)
    • fool@programming.devOP
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      According to tab autocomplete…

      $ git
      zsh: do you wish to see all 141 possibilities (141 lines)?
      

      But what about the sub options?

      $ git clone https://github.com/git/git
      $ cd git/builtin
      # looking through source, options seem to be declared by OPT
      # except for if statements, OPT_END, bug checks, etc.
      $ grep -R OPT_ | grep --invert-match --count -E \
      "OPT_END|BUG_ON_OPT|if |PARSE_OPT|;$|struct|#define"
      1517
      

      Maybe 1500 or so as an upper bound.