dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 65cc79e0f319b50c40df2b818dc5eb715cd82dff
parent b455e5d75f430886fbb4465703f5c263c30798f4
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 26 Feb 2019 16:08:12 +0100

Fixed up some git aliases


Former-commit-id: eb0936a2c14c8b964093c20051e6d80a2dbee67a
Diffstat:
Mgit/gitconfig | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/git/gitconfig b/git/gitconfig @@ -46,9 +46,9 @@ pnf = pull --no-ff fuckitall = reset --hard HEAD home = "!git remote get-url origin | sed -E 's|^git@([^:]+):|https://\\1/|'" - up-sub = "!git submodule foreach 'git fetch origin --tags; git checkout master; git pull' && git add . && git commit -m 'Updated submodules';git submodule update --recursive --checkout --force" + up-sub = "!git submodule foreach git pull; git submodule update --init --recursive -j8" open = "!open $(git home)" - dad = "!curl https://icanhazdadjoke.com/ && git add" + dad = "!curl https://icanhazdadjoke.com/ && echo && git add" la = "!git config -l | grep alias | cut -c 7-"