feat(jj): Update jj aliases

- `jj branch` is deprecated as of v0.22.0.  `jj bookmark` currently has
  identical behaviour.
- Sort aliases alphabetically.
- Alias `jsp` to `jj split`.
This commit is contained in:
Madeleine Sydney
2025-02-15 13:39:43 -07:00
parent 1bdcc3ecbc
commit a564b7a1ea

View File

@@ -13,20 +13,20 @@ in lib.mkMerge [
}; };
home.shellAliases = { home.shellAliases = {
gs = "git status";
ga = "git add"; ga = "git add";
gp = "git push";
gtd = "git tag --delete";
gb = "git branch"; gb = "git branch";
gc = "git commit"; gc = "git commit";
gcl = "git clone"; gcl = "git clone";
gd = "git diff";
gco = "git checkout"; gco = "git checkout";
gd = "git diff";
gl = "git log"; gl = "git log";
gr = "git remote";
grs = "git remote show";
glo = "git log --pretty=oneline"; glo = "git log --pretty=oneline";
glol = "git log --graph --oneline --decorate"; glol = "git log --graph --oneline --decorate";
gp = "git push";
gr = "git remote";
grs = "git remote show";
gs = "git status";
gtd = "git tag --delete";
}; };
} }
@@ -41,16 +41,17 @@ in lib.mkMerge [
}; };
home.shellAliases = { home.shellAliases = {
jb = "jj bookmark";
jdi = "jj diff";
jd = "jj describe";
je = "jj edit";
jgcl = "jj git clone";
jgp = "jj git push"; jgp = "jj git push";
jgr = "jj git remote"; jgr = "jj git remote";
jgcl = "jj git clone";
js = "jj status";
jn = "jj new";
jd = "jj describe";
jdi = "jj diff";
jb = "jj branch";
je = "jj edit";
jl = "jj log"; jl = "jj log";
jn = "jj new";
js = "jj status";
jsp = "jj split";
}; };
} }