Format, versions, README

[?]
Nov 17, 2020, 10:05 AM
BAUL3WR2ACY2HCJIM7K6HJOJ3UXDJISGLMDCSPH3WMPGJPL5AR4QC

Dependencies

  • [2] 5HF7C67M push/pull: fixed "changes" arguments
  • [3] SXEYMYF7 Fixing the bad changes in history (unfortunately, by rebooting).

Change contents

  • replacement in pijul/src/commands/pushpull.rs at line 171
    [2.607][2.607:712]()
    Ok((hash,_)) => if to_upload.contains(&hash) {
    u.push(hash);
    [2.607]
    [2.712]
    Ok((hash, _)) => {
    if to_upload.contains(&hash) {
    u.push(hash);
    }
  • replacement in pijul/src/commands/pushpull.rs at line 176
    [2.734][2.734:857]()
    Err(_) => if !not_found.contains(change) {
    not_found.push(change.to_string());
    [2.734]
    [2.857]
    Err(_) => {
    if !not_found.contains(change) {
    not_found.push(change.to_string());
    }
  • replacement in pijul/src/commands/pushpull.rs at line 181
    [2.879][2.879:898]()
    }
    [2.879]
    [2.898]
    }
  • replacement in pijul/src/commands/pushpull.rs at line 185
    [2.952][2.952:1041]()
    return Err((crate::Error::ChangesNotFound { hashes: not_found}).into());
    [2.952]
    [2.1041]
    return Err((crate::Error::ChangesNotFound { hashes: not_found }).into());
  • edit in pijul/src/commands/file_operations.rs at line 118
    [3.172463][3.172463:172464]()
  • replacement in libpijul/src/apply.rs at line 623
    [3.965517][3.965517:965589]()
    return Err(crate::Error::InconsistentChange.into())
    [3.965517]
    [3.965589]
    return Err(crate::Error::InconsistentChange.into());
  • replacement in README.md at line 18
    [3.1027392][3.1027392:1027405]()
    ## Add files
    [3.1027392]
    [3.1027405]
    ### Add files
  • replacement in README.md at line 33
    [3.1027586][3.1027586:1027603]()
    ## Make a change
    [3.1027586]
    [3.1027603]
    ### Make a change
  • replacement in README.md at line 45
    [3.1028038][3.1028038:1028053]()
    ## Collaborate
    [3.1028038]
    [3.1028053]
    ### Collaborate
  • replacement in README.md at line 61
    [3.1028653][3.1028653:1028675]()
    ## Going back in time
    [3.1028653]
    [3.1028675]
    ### Going back in time
  • replacement in README.md at line 78
    [3.1028989][3.1028989:1029016]()
    ## Import a Git repository
    [3.1028989]
    [3.1029016]
    ### Import a Git repository
  • replacement in README.md at line 84
    [3.1029440][3.1029440:1029458]()
    ## About channels
    [3.1029440]
    [3.1029458]
    ### About channels
  • edit in README.md at line 97
    [3.1030174]
    ## Contributing
    We 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" ]
    ```