Skip to content

Instantly share code, notes, and snippets.

@juanj032
Created October 3, 2014 16:14
Show Gist options
  • Save juanj032/e2c1ef204e3208af54a3 to your computer and use it in GitHub Desktop.
Save juanj032/e2c1ef204e3208af54a3 to your computer and use it in GitHub Desktop.
# Crea un alias en git para ver el historico con los archivos que se cambiaron
git config --global alias.ll 'log d--pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numsta'
# Para ver los archivos cambiados entre un branch y otro
git ll master..my-branch | grep /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment