-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_branchless.talon
28 lines (28 loc) · 1.87 KB
/
git_branchless.talon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
app: vscode
-
git move <user.branchless_commitish> <user.branchless_destination>:
user.branchless_move_source(branchless_commitish, branchless_destination)
git move merge <user.branchless_commitish> <user.branchless_destination>:
user.branchless_move_source(branchless_commitish, branchless_destination, 1)
git move <user.branchless_revset_required_modifier> <user.branchless_destination>:
user.branchless_move_exact(branchless_revset_required_modifier, branchless_destination)
git move merge <user.branchless_revset_required_modifier> <user.branchless_destination>:
user.branchless_move_exact(branchless_revset_required_modifier, branchless_destination, 1)
git move insert <user.branchless_revset_required_modifier> <user.branchless_destination>:
user.branchless_move_exact(branchless_revset_required_modifier, branchless_destination, 0, 1)
git move fixup <user.branchless_revset_required_modifier> <user.branchless_destination>:
user.branchless_move_exact(branchless_revset_required_modifier, branchless_destination, 0, 0, 1)
git point <user.branchless_branch> <user.branchless_destination>:
user.branchless_move_branch(branchless_branch, branchless_destination)
git pop <user.branchless_destination>:
user.branchless_switch_to_commit(branchless_destination)
git log: user.vscode("git-branchless.smartlog")
git detach: user.vscode("git-branchless.custom.detachHead")
git {user.branchless_simple_command} <user.branchless_revset>:
user.branchless_simple_command(branchless_simple_command, branchless_revset)
git (submit | push force) <user.branchless_revset>:
user.branchless_submit_revset(branchless_revset)
git (submit | push force) create <user.branchless_revset>:
user.branchless_submit_revset(branchless_revset, 1)
git draft <user.branchless_commitish> <user.branchless_destination>:
user.branchless_reset_mixed(branchless_commitish, branchless_destination)