this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Better git hooks managament

+11 -17
+1 -1
git/Makefile
··· 3 3 install: 4 4 git config --global include.path "$(PWD)/config" 5 5 git config --global core.excludesfile "$(PWD)/ignore" 6 - git config --global init.templatedir "$(PWD)/template" 6 + git config --global core.hooksPath "$(PWD)/hooks" 7 7 8 8 clean: 9 9 git config --global --unset include.path
+9
git/hooks/hook.sh
··· 1 + #!/bin/bash 2 + 3 + script="$(basename "$0")" 4 + HOOKS_DIR="$(command git config --get core.hooksPath || echo "$GIT_DIR/hooks")" 5 + PLUGS_DIR="$HOOKS_DIR/plugs" 6 + 7 + test -d "$GIT_DIR"/rebase-merge -o -d "$GIT_DIR"/rebase-apply && exit 0 8 + find "$PLUGS_DIR" -depth 2 -and -name "$script" -print0 | \ 9 + xargs -0 -n1 sh -c '"$1" && echo "$(basename "$(dirname "$1")"): ok"' --
-15
git/template/hooks/hook.sh
··· 1 - #!/bin/sh 2 - 3 - script="$(basename "$0")" 4 - PLUGS_DIR="$GIT_DIR/hooks/plugs" 5 - 6 - test -d "$GIT_DIR"/rebase-merge -o -d "$GIT_DIR"/rebase-apply && exit 0 7 - for plugin in "$PLUGS_DIR"/* 8 - do 9 - if [ -x "$PLUGS_DIR/$plugin/$script" ] 10 - then 11 - "$PLUGS_DIR/$plugin/$script" "$@" || exit $? 12 - fi 13 - 14 - echo "$plugin $script: ok" 15 - done
git/template/hooks/plugs/trailing-whitespaces/pre-commit git/hooks/plugs/trailing-whitespaces/pre-commit
git/template/hooks/plugs/unresolved-merge/pre-commit git/hooks/plugs/unresolved-merge/pre-commit
git/template/hooks/plugs/wip-check/pre-push git/hooks/plugs/wip-check/pre-push
git/template/hooks/post-checkout git/hooks/post-checkout
git/template/hooks/post-commit git/hooks/post-commit
git/template/hooks/post-merge git/hooks/post-merge
git/template/hooks/pre-commit git/hooks/pre-commit
git/template/hooks/pre-push git/hooks/pre-push
git/template/hooks/prepare-commit-msg git/hooks/prepare-commit-msg
+1 -1
nvim/init.vim
··· 74 74 Plug 'tpope/vim-dispatch' | 75 75 \ Plug 'radenling/vim-dispatch-neovim' 76 76 Plug 'tpope/vim-projectionist' 77 - Plug 'w0rp/ale' 77 + Plug 'w0rp/ale', { 'dir': '~/Workspace/w0rp/ale' } 78 78 let g:ale_lint_on_text_changed = 0 79 79 let g:ale_lint_on_save = 1 80 80 let g:ale_sign_column_always = 1