push/pull: rename `channel` option
[?]
Dec 4, 2020, 1:58 PM
QWD7UE766WLJ3JZU7L2UXMV7Q236DSDMH2CCI4M6HIA4QA3QVFAQCDependencies
- [2]
AEPEFS7OWrite help for each argument - [3]
5HF7C67Mpush/pull: fixed "changes" arguments - [4]
KWAMD2KRA few fixes in the documentation comments - [5]
76PCXGMLPushing to, and pulling from the local repository - [6]
I52XSRUHMassive cleanup, and simplification - [7]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [8]
VMPAOJS2Don't output after pushing to a local channel - [9]
4H2XTVJ2Fix some mistakes in the docs
Change contents
- replacement in pijul/src/commands/pushpull.rs at line 61
#[clap(long = "channel")]channel: Option<String>,#[clap(long = "from-channel")]from_channel: Option<String>, - replacement in pijul/src/commands/pushpull.rs at line 88
#[clap(long = "channel")]channel: Option<String>,#[clap(long = "to-channel")]to_channel: Option<String>, - replacement in pijul/src/commands/pushpull.rs at line 121
let channel_name = repo.config.get_current_channel(self.channel.as_ref());let channel_name = repo.config.get_current_channel(self.from_channel.as_ref()); - replacement in pijul/src/commands/pushpull.rs at line 268
let channel_name = repo.config.get_current_channel(self.channel.as_ref());let channel_name = repo.config.get_current_channel(self.to_channel.as_ref());