this repo has no description

[jj] track remote branch on `jj z <name>`

Changed files
+3 -1
private_dot_config
private_jj
+3 -1
private_dot_config/private_jj/config.toml
··· 53 53 if [ "x$1" = "x" ]; then 54 54 jj bookmark list 55 55 else 56 - jj bookmark list -a -T 'separate("@", name, remote) ++ "\n"' 2> /dev/null | sort | uniq | fzf -f "$1" | head -n1 | xargs jj new 56 + branch=$(jj bookmark list -a -T 'separate("@", name, remote) ++ "\n"' 2> /dev/null | sort | uniq | grep -v '@git' | fzf -f "$1" | head -n1) 57 + jj bookmark track "${branch%@origin}@origin" 2> /dev/null 58 + jj new "${branch%@origin}" 57 59 fi 58 60 """, ""] 59 61