Adding --force to reset/switch, to ignore name conflicts
Dependencies
- [2]
I24UEJQLVarious post-fire fixes - [3]
TFK7CYFQ`pijul channel new` to create new, empty channels - [4]
JL4WKA5PImplement the Sanakirja concurrency model in a cross-process way - [5]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [6]
VQPAUKBQchannel switch as an alias to reset - [7]
Q4SVMHAERemoving --channel from the changes command - [8]
5OGOE4VWStore the current channel in the pristine - [9]
EUZFFJSOUpdating Pijul with the latest changes in Libpijul - [10]
KWAMD2KRA few fixes in the documentation comments - [*]
AEPEFS7OWrite help for each argument - [*]
I52XSRUHMassive cleanup, and simplification
Change contents
- edit in pijul/src/commands/reset.rs at line 25
/// Reset even if there are unrecorded changes.#[clap(long = "force", short = 'f')]pub force: bool, - replacement in pijul/src/commands/reset.rs at line 103
} else if self.channel.is_some() {} else if self.channel.is_some() && !self.force { - replacement in pijul/src/commands/channel.rs at line 31
Switch { to: Option<String> },Switch {to: Option<String>,#[clap(long = "force", short = 'f')]force: bool,}, - replacement in pijul/src/commands/channel.rs at line 71
Some(SubCommand::Switch { to }) => {Some(SubCommand::Switch { to, force }) => { - edit in pijul/src/commands/channel.rs at line 77[4.1697][13.6379]
force,