From 61ac93b68f7284fd3570dd86b90dc611a64b2c56 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Thu, 6 Nov 2025 11:14:21 +0100 Subject: [PATCH] Add git push/pull aliases --- .gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitconfig b/.gitconfig index 8118538..feff57a 100644 --- a/.gitconfig +++ b/.gitconfig @@ -21,6 +21,8 @@ sv = status --verbose co = checkout cob = checkout -b + pullr = "pull --rebase --autostash" + pushf = "push --force-with-lease" # Note these follow the naming convention of my `.bash_aliases` al = "!git config -l | grep alias | cut -c 7-" alf = "!git config -l | grep alias | cut -c 7- | fzf"