Fixing push/pull messages, and do not reverse the changes to download/upload
[?]
Dec 7, 2020, 4:39 PM
BBKV6VMN4EVBCBSAQMTL2TARBBSQEZGRCXMTKYUIDOJ3HZISUP7ACDependencies
- [2]
I52XSRUHMassive cleanup, and simplification - [3]
YS2HLPX6Don't propose an empty list of changes to push - [4]
BAUL3WR2Format, versions, README - [5]
5HF7C67Mpush/pull: fixed "changes" arguments - [6]
76PCXGMLPushing to, and pulling from the local repository - [7]
5DVRL6MFHard-unrecord - [8]
XWETQ4DEUpgrading versions - [9]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [10]
M5FK3ABTComplete dependencies when pushing and pulling - [11]
IMCZFTIJUpdate selection instructions to also mention pushing
Change contents
- edit in pijul/src/commands/pushpull.rs at line 202
to_upload.reverse(); - replacement in pijul/src/commands/pushpull.rs at line 236
let mut o = make_changelist(&repo.changes, &to_upload)?;let mut o = make_changelist(&repo.changes, &to_upload, "push")?; - replacement in pijul/src/commands/pushpull.rs at line 243
o = make_changelist(&repo.changes, &comp)?o = make_changelist(&repo.changes, &comp, "push")? - edit in pijul/src/commands/pushpull.rs at line 341
to_download.reverse(); - replacement in pijul/src/commands/pushpull.rs at line 367
let mut o = make_changelist(&repo.changes, &to_download)?;let mut o = make_changelist(&repo.changes, &to_download, "pull")?; - replacement in pijul/src/commands/pushpull.rs at line 374
o = make_changelist(&repo.changes, &comp)?o = make_changelist(&repo.changes, &comp, "pull")? - edit in pijul/src/commands/pushpull.rs at line 431
verb: &str, - replacement in pijul/src/commands/pushpull.rs at line 437
"# Please select the changes to pull. The lines that contain just a"# Please select the changes to {}. The lines that contain just a - replacement in pijul/src/commands/pushpull.rs at line 439
# be pulled/pushed.\n"# be {}ed.\n",verb, verb,