Skip to content

Instantly share code, notes, and snippets.

@scodx
Last active December 20, 2015 16:49
Show Gist options
  • Save scodx/6164067 to your computer and use it in GitHub Desktop.
Save scodx/6164067 to your computer and use it in GitHub Desktop.
Git TIPS
# Mensajes de los commits entre fechas por usuario :)
git log --pretty=format:'%s' --author='oscar' --since "JUL 29 2010" --until="JUL 10 2013" ;
# Reset a commit (con remote repo incluido :))
git reset HEAD^ # remove commit locally
git push origin +HEAD # force-push the new HEAD commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment