From 5b9444ae4dd161418deea7c1504de55b09278994 Mon Sep 17 00:00:00 2001 From: Simon Studer Date: Tue, 16 Sep 2025 16:17:40 +0200 Subject: [PATCH] add pull --rebase and amend alias --- config/git/config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/git/config b/config/git/config index 3da1394..a972b04 100644 --- a/config/git/config +++ b/config/git/config @@ -13,6 +13,7 @@ a = add c = commit -m ca = commit -am + amend = commit -a --amend --no-edit s = status st = status -s d = diff @@ -24,6 +25,7 @@ cod = checkout dev nb = checkout -b db = branch -d + pr = pull --rebase [user] email = s.studer.s@gmail.com name = Simon Studer