"The Git Commands I Run Before Reading Any Code"
(piechowski.io)
from eager_eagle@lemmy.world to programming@programming.dev on 09 Apr 22:23
https://lemmy.world/post/45403288
from eager_eagle@lemmy.world to programming@programming.dev on 09 Apr 22:23
https://lemmy.world/post/45403288
#programming
threaded - newest
Gonna have to try that out. I think it would have told interesting stories on some past repos.
I wish ‘’co-authored by AI’ was easy to flag in vcs.
This is going into my bashrc as a mini cli. I’m pretty sure I’m going to want to run this every time I change jobs.
Super cool
Ahh the famous git commands such as sort, uniq, head, and grep.
This would have no effect in my team where everyone does whatever they want in git lol
They’re bash/shell- and bin-dependent commands rather than Git commands. I use Nushell.
Transformed to Nushell commands:
git log --format=format: --name-only --since=“1 year ago” | lines | str trim | where (is-not-empty) | uniq --count | sort-by count --reverse | take 20git shortlog -sn --no-mergesgit shortlog -sn --no-merges --since="6 months ago"git log -i -E --grep=“fix|bug|broken” --name-only --format=‘’ | lines | str trim | where (is-not-empty) | uniq --count | sort-by count --reverse | take 20git log --format=‘%ad’ --date=format:‘%Y-%m’ | lines | str trim | where (is-not-empty) | uniq --countgit log --oneline --since=“1 year ago” | find --ignore-case --regex ‘revert|hotfix|emergency|rollback’/edit: Looks like the lines have whitespace or sth. Replaced
lines --skip-emptywithlines | str trim | where (is-not-empty).command aliases
nu def “gits most-changed-files” [] { git log --format=format: --name-only --since=“1 year ago” | lines | str trim | where (is-not-empty) | uniq --count | sort-by count --reverse | take 20 } def “gits who” [] { git shortlog -sn --no-merges } def “gits who6m” [] { git shortlog -sn --no-merges --since=“6 months ago” } def “gits fixes” [] { git log -i -E --grep=“fix|bug|broken” --name-only --format=‘’ | lines | str trim | where (is-not-empty) | uniq --count | sort-by count --reverse | take 20 } def “gits aliveness” [] { git log --format=‘%ad’ --date=format:‘%Y-%m’ | lines | str trim | where (is-not-empty) | uniq --count } def “gits firefighting” [] { git log --oneline --since=“1 year ago” | find --ignore-case --regex ‘revert|hotfix|emergency|rollback’ }