tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
jujutsu: add revset aliases
wiro.world
4 weeks ago
f35ce721
c24d9360
verified
This commit was signed with the committer's
known signature
.
wiro.world
SSH Key Fingerprint:
SHA256:SmMcWpNAnL+VAgItSawvXgdPVn7f1rsyAuB/5VNclKY=
+10
1 changed file
expand all
collapse all
unified
split
home-manager
fragments
jujutsu.nix
+10
home-manager/fragments/jujutsu.nix
···
66
66
git_push_bookmark = ''"push-" ++ change_id.short()'';
67
67
};
68
68
69
69
+
revset-aliases = {
70
70
+
"current()" = "(::@ ~ ::trunk())";
71
71
+
"open()" = "((::tracked_remote_bookmarks() | mine()) ~ ::trunk())::";
72
72
+
"visible_open()" = "(open() & ::visible_heads())::";
73
73
+
# Useful to rebase all branches with `jj r -s "all:visible_open_roots()" -d main/master/develop/..`
74
74
+
"visible_open_roots()" = "roots(visible_open())";
75
75
+
};
76
76
+
69
77
ui = {
70
78
default-command = "log";
79
79
+
80
80
+
conflict-marker-style = "snapshot";
71
81
72
82
diff-editor = ":builtin";
73
83
merge-editor = ":builtin";