Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/beanieboi/rails-reverts
- Owner: beanieboi
- Created: 2013-06-03T22:22:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-03T22:23:00.000Z (over 11 years ago)
- Last Synced: 2023-04-11T19:11:02.431Z (over 1 year ago)
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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