This shows you the differences between two versions of the page.
|
git [2021/02/16 09:56] 127.0.0.1 external edit |
git [2026/04/08 17:38] (current) sqbell |
||
|---|---|---|---|
| Line 103: | Line 103: | ||
| INFO: https:// | INFO: https:// | ||
| + | |||
| + | === Inspecting new codebase === | ||
| + | |||
| + | https:// | ||
| + | |||
| + | == What Changes the Most == | ||
| + | |||
| + | <code sh> | ||
| + | git log --format=format: | ||
| + | </ | ||
| + | |||
| + | == Who Built This == | ||
| + | |||
| + | <code sh> | ||
| + | git shortlog -sn --no-merges | ||
| + | </ | ||
| + | |||
| + | == Where Do Bugs Cluster == | ||
| + | |||
| + | <code sh> | ||
| + | git log -i -E --grep=" | ||
| + | </ | ||
| + | |||
| + | == Is This Project Accelerating or Dying == | ||
| + | |||
| + | <code sh> | ||
| + | git log --format=' | ||
| + | </ | ||
| + | |||
| + | == How Often Is the Team Firefighting == | ||
| + | |||
| + | <code sh> | ||
| + | git log --oneline --since=" | ||
| + | </ | ||