mirror of
https://github.com/martinvonz/jj.git
synced 2025-02-06 03:22:59 +00:00
cli branch
: add alias t
for track
This goes with `c`, `s`, `f`. I feel like it's a relatively common command now that `auto-local-branch` defaults to `false`. I didn't add `u` for `untrack` because it seems a little ambiguous (un-what?); there may be other `branch` commands that undo something in the future.
This commit is contained in:
parent
20cbe77bf5
commit
95b752dfe8
1 changed files with 1 additions and 0 deletions
|
@ -52,6 +52,7 @@ pub enum BranchCommand {
|
|||
Rename(BranchRenameArgs),
|
||||
#[command(visible_alias("s"))]
|
||||
Set(BranchSetArgs),
|
||||
#[command(visible_alias("t"))]
|
||||
Track(BranchTrackArgs),
|
||||
Untrack(BranchUntrackArgs),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue