git alias
Creates alias
adog
globally
git config --global alias.adog "log --all --decorate --oneline --graph"
Which can lately be run using the follwing command
git adog
After the command execution, In global
config
file will be added the following
[alias]
	adog = log --all --decorate --oneline --graph
by Valeri Tandilashvili
4 years ago
Git
2
Pro tip: use ```triple backticks around text``` to write in code fences