diff options
author | Alan Pearce | 2023-05-05 22:22:11 +0200 |
---|---|---|
committer | Alan Pearce | 2023-05-05 22:22:11 +0200 |
commit | d63c46fd6c10ef8ecb416134aa3e312927a6e91c (patch) | |
tree | 32ae6038793f3c1af879ebe9b4c833257bca1dc1 | |
parent | 1744c1a6bc064f127348f32aa8846c5859065ca6 (diff) | |
download | nixfiles-d63c46fd6c10ef8ecb416134aa3e312927a6e91c.tar.lz nixfiles-d63c46fd6c10ef8ecb416134aa3e312927a6e91c.tar.zst nixfiles-d63c46fd6c10ef8ecb416134aa3e312927a6e91c.zip |
zsh: add more git aliases
-rw-r--r-- | user/settings/zsh.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index e9f1cdf8..ff27315e 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -140,6 +140,7 @@ in ga = "git add"; gs = "git st"; gd = "git diff"; + gdc = "git diff --cached"; gf = "git fetch"; gk = "git push"; gkf = "git push --force-with-lease"; @@ -147,6 +148,7 @@ in gl = "git lg"; gm = "git merge"; ge = "git remote"; + ges = "git remote -v show"; gr = "git rebase"; gz = "git stash"; gzl = "git stash list"; |