Commit 2626a20c80ef

Vincent Demeester <vincent@sbr.pm>
2025-01-14 15:56:22
users/vincent: fix git alias again…
The extra spaces seems to be too much. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 1ab1856
Changed files (1)
users
vincent
users/vincent/core/git.nix
@@ -53,11 +53,11 @@ in
     };
 
     aliases = {
-      b = " branch - -color - v ";
-      br = "branch ";
-      ca = "commit - -amend ";
-      ci = "commit - -signoff ";
-      co = "checkout ";
+      b = "branch - -color - v";
+      br = "branch";
+      ca = "commit - -amend";
+      ci = "commit - -signoff";
+      co = "checkout";
       conflicts = "!git ls-files --unmerged | cut -c51- | sort -u | xargs $EDITOR";
       dft = "difftool";
       lg = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative";