Prints a list of all git aliases.
git config -l
to list all variables set in the configuration file.|
) to pipe the output and grep alias
to only keep aliases.|
) to pipe the output and sed 's/^alias\.//g'
to remove the alias.
part from each alias.git config -l | grep alias | sed 's/^alias\.//g'
git config -l | grep alias | sed 's/^alias\.//g'
# st=status
# co=checkout
# rb=rebase
Git, Configuration
Disables the default fast forwarding on merge commits.
Git, Configuration
Configures the repository to automatically create upstream branches on push.
Git, Configuration
Use the name of the current branch when pushing by default as the name of the remote branch.