Format, versions, README
[?]
Nov 17, 2020, 10:05 AM
BAUL3WR2ACY2HCJIM7K6HJOJ3UXDJISGLMDCSPH3WMPGJPL5AR4QCDependencies
- [2]
5HF7C67Mpush/pull: fixed "changes" arguments - [3]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting).
Change contents
- replacement in pijul/src/commands/pushpull.rs at line 171
Ok((hash,_)) => if to_upload.contains(&hash) {u.push(hash);Ok((hash, _)) => {if to_upload.contains(&hash) {u.push(hash);} - replacement in pijul/src/commands/pushpull.rs at line 176
Err(_) => if !not_found.contains(change) {not_found.push(change.to_string());Err(_) => {if !not_found.contains(change) {not_found.push(change.to_string());} - replacement in pijul/src/commands/pushpull.rs at line 181
}} - replacement in pijul/src/commands/pushpull.rs at line 185
return Err((crate::Error::ChangesNotFound { hashes: not_found}).into());return Err((crate::Error::ChangesNotFound { hashes: not_found }).into()); - edit in pijul/src/commands/file_operations.rs at line 118
- replacement in libpijul/src/apply.rs at line 623
return Err(crate::Error::InconsistentChange.into())return Err(crate::Error::InconsistentChange.into()); - replacement in README.md at line 18
## Add files### Add files - replacement in README.md at line 33
## Make a change### Make a change - replacement in README.md at line 45
## Collaborate### Collaborate - replacement in README.md at line 61
## Going back in time### Going back in time - replacement in README.md at line 78
## Import a Git repository### Import a Git repository - replacement in README.md at line 84
## About channels### About channels - edit in README.md at line 97[3.1030174]
## ContributingWe welcome all contributions. Moreover, as this projects aims at making it easier to collaborate with others (we're getting there), we obviously value mutual respect and inclusiveness above anything else.Moreover, since this is a Rust project, we ask contributors to run `cargo fmt` on their code before recording changes. This can be done automatically by adding the following lines to the repository's `.pijul/config`:```[hooks]record = [ "cargo fmt" ]```