Yet Another Dotfiles Repo
1function jj-init --description "Initialize a new jj repo with a colocated main workspace" 2 if test -d main 3 echo "error: main/ already exists in this directory" 4 return 1 5 end 6 7 jj git init main 8 cd main 9end