About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
erknrio
6/29/2017 - 1:50 PM
share
Share
add_circle_outline
Save
Lista todos los commits de un repositorio
Lista todos los commits de un repositorio
git_log.md
content_copy
file_download
Rendered
Source
git log --all --pretty=format:"%ae %ai (%D) %s"
all
: Pretend as if all the refs in refs/ are listed on the command line as .
pretty
: Muestra el /los commits en el formato especificado.
%ae
: Email del autor.
%ai
: Fecha del commit en formato ISO 8601.
%D
: ref names without the " (", ")" wrapping.
%s
: subject.
clear