9 lines
166 B
Bash
Executable file
9 lines
166 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Show a simplified tree with all branches.
|
|
#
|
|
exec git log \
|
|
--all \
|
|
--graph \
|
|
--pretty='%C(auto)%h%d %s %C(8) %ad' \
|
|
--simplify-by-decoration
|