From 6c036f9d2e5dfc044e8dc4937b1cc97cc7f2a367 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 27 Oct 2021 17:30:08 -0700 Subject: [PATCH 1/2] zsh: add sctl alias --- .zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index caf2e5e..eb08f97 100644 --- a/.zshrc +++ b/.zshrc @@ -65,8 +65,10 @@ rmd='rmdir' \ rd='rmdir' \ - alias mkd=mkdir - alias g=git + alias \ + mkd=mkdir \ + g=git \ + sctl='sudo systemctl' \ # <<< ## Program improvements (ex: ls = ls -h) >>> From 9a0f7fddec69fd779cb4980bb9a9ff1998142b42 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 27 Oct 2021 17:33:07 -0700 Subject: [PATCH 2/2] zsh: slight alias modification --- .gitconfig | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitconfig b/.gitconfig index 22600ad..ead0213 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,24 +1,28 @@ [init] defaultBranch = trunk + [credential] helper = store + [pull] rebase = false + [user] email = blakelysnorth@gmail.com name = PowerUser64 + [alias] tree = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all lg = tree sub = submodule + pl = pull + ps = push s = status - p = pull - pu = push a = add c = commit ca = commit -a cam = commit --amend caam = commit -a --amend - dh = diff HEAD + d = diff # vim:noet