From 2a676ad2cba5ff77255c0bde541fe81fc1479c18 Mon Sep 17 00:00:00 2001 From: Adrian Abeyta Date: Mon, 6 Apr 2026 19:47:24 -0600 Subject: [PATCH] add custom aliases --- git/.gitconfig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/git/.gitconfig b/git/.gitconfig index be14deb..157f8a4 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -16,12 +16,14 @@ f = fetch --all - # Pull in remote changes for the current repository and all its submodules. - p = pull --recurse-submodules + p = push + pf = push --force-with-lease # Clone a repository including all submodules. c = commit -m + a = add + # Commit all changes. ca = !git add ':(exclude,attr:builtin_objectmode=160000)' && git commit -av