Skip to content

Instantly share code, notes, and snippets.

@guidoschmidt
Last active August 1, 2018 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guidoschmidt/e3e68b2fd5cb031c821de8e68fb1d158 to your computer and use it in GitHub Desktop.
Save guidoschmidt/e3e68b2fd5cb031c821de8e68fb1d158 to your computer and use it in GitHub Desktop.
Git Cheatsheet
  • Log all commits that happended in the last 356 days, sort them and filter for (less|css|sass|scss)

git log --name-only --since="365 days" | sort -u | awk '/\.(le|c|sa|sc)ss$/{print}' | nl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment