Browse Source

git: aliases: ++tree, ignore

Maxim Likhachev 6 years ago committed by Maxim Likhachev
parent
commit
01302b21d6
  1. 5
      etc/soft/git/gitconfig

5
etc/soft/git/gitconfig

@ -51,6 +51,8 @@ @@ -51,6 +51,8 @@
ll = !git --no-pager log -1 HEAD && echo
lu = !git --no-pager log --left-right --pretty=format:'%C(yellow)%h%Creset - %Cgreen[%cd]%Creset :: %s %C(bold blue)%Creset' --abbrev-commit --graph --color --date=short origin/master...HEAD | nl
tree = ls --all --simplify-by-decoration
recall = !git-recall
alias = !sh -c '[ ! -z $2 ] && git config --global alias.\"$1\" \"$2\" && exit 0 || echo \"usage: git alias <new alias> <original command>\" >&2 && exit 1' -
@ -75,5 +77,8 @@ @@ -75,5 +77,8 @@
pk = !git archive HEAD --format=zip > `basename $PWD`_`\\date '+%Y.%M.%d'`.zip
# https://gitignore.io/
ignore = "!ignore() { curl -sq gitignore.io/api/${1} | grep -v '^#' | grep .; }; ignore"
[push]
default = simple

Loading…
Cancel
Save