toolgit
git-blameall
toolgit | git-blameall | |
---|---|---|
2 | 6 | |
546 | 34 | |
0.0% | - | |
7.1 | 0.0 | |
4 days ago | over 3 years ago | |
Python | Python | |
The Unlicense | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
toolgit
-
ToolGit: A collection of scripts that extend Git with various sub-commands
I like these a lot! It seems like git-extras is pure bash allowing it to work out of the box without any dependencies but I would probably go mad if I had to implement¹ reading/writing git index² in bash.
[¹]: https://github.com/ahmetsait/toolgit/blob/58713ead5abc060510...
git-blameall
-
Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
I've been carrying around a copy of "git blameall" for years - looks like https://github.com/gnddev/git-blameall is the same one - that basically does this, but keeps it all interleaved in one output (which works pretty well for archeology, especially if you're looking at "work hardened" code.)
(Work hardening is a metalworking term where metal bent back and forth (or hammered) too much becomes brittle; an analogous effect shows up in code, where a piece of code that has been bugfixed a couple of times will probably be need more fixes; there was a published result a decade or so back about using this to focus QA efforts...)
-
ToolGit: A collection of scripts that extend Git with various sub-commands
The most useful git extra command I know of is git blameall from https://github.com/gnddev/git-blameall but apparently it's just me because when the time came I needed to port it to Python 3 but oh well :)
Here's a part of Drupal index.php: https://i.imgur.com/Xw4OAEC.png
-
So You Think You Know Git – Git Tips and Tricks by Scott Chacon
Thanks, I knew about -committerdate but not that you can set it as default sort, super useful. A few notes...
1. git columns gets real confusing if you have more data than fits the screen and you need to scroll. Numbers would help...
2. git maintenance sounds great but since I do a lot of rebases and stuff, I am worried: does this lose loose objects faster than gc would? I see gc is disabled but it's not clear.
3. Regarding git blame a little known but super useful script is https://github.com/gnddev/git-blameall . (I mean, it's so little known I myself needed to port it to Python 3 and I am no Python developer by any stretch.)
-
How I debugged and fixed git-grep macOS UTF-8 support
The author mentions git blame which is indeed an important tool but in more complex codebases it's entire possible the original introduction would require several steps because the code was refactored since. For this, git blameall is a wonderful and almost completely unknown utility. https://github.com/gnddev/git-blameall Yours truly did a quick Python 3 port this January, mostly using the automated toolset for it and the author, much to my surprise, committed it in a week despite the last commit was in 2013. So the project is not dead :)
-
Fossil: Battery Included Git Alternative
Does anyone know whether git blameall https://github.com/ddev/git-blameall is easy to do with Fossil? It's a lesser known tool but I found it incredibly useful (hence why I did the Python 3, mostly automated tools but still).
- Ignoring bulk change commits with Git blame
What are some alternatives?
git-split - A TUI commit splitting tool for git
cregit
git-extras - GIT utilities -- repo summary, repl, changelog population, author commit percentages and more
git-who - Git blame for file trees
git-praise - Use git-praise to find out who to thank for that magical piece of code.
tokdiff - Tokenizer-based character diff tool