From 30530c97592bc4266f515fc212014a643f72323b Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Mon, 11 May 2026 09:40:42 -0400 Subject: [PATCH] Add aliases for jujutsu --- home/.zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/.zshrc b/home/.zshrc index 04d8c37..d0d7ebc 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -36,10 +36,14 @@ source ~/.profile alias clip2png="xclip -selection clipboard -target image/png -out" alias k="kubectl" -ssh() { +ssh_no_tmux() { NO_TMUX=1 nohup ghostty --command="ssh $*" >/dev/null 2>&1 & } +alias jjn="jj new -B @ --no-edit" +alias jjs="jj squash --interactive --from @ --into @-" +alias jjp="jj bookmark move master --to @-; jj git push" + #============================================================================== # Functions #==============================================================================