Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/beanieboi/rails-reverts

show the number of git reverts over time on rails/rails
https://github.com/beanieboi/rails-reverts

Last synced: 24 days ago
JSON representation

show the number of git reverts over time on rails/rails

Awesome Lists containing this project

README

        

# Rails Reverts

show the number of git reverts over time on rails/rails

getting the data:

git log --no-merges --format="%ci" --grep="^Revert" | awk '{print substr($0, 0, 7)}' | sort -n | uniq -c | sort