Touch the channel if no file was changed
[?]
Feb 28, 2021, 9:48 PM
YDTN6BGI5TFRJFM3N3Y2J463GKFHU5L3DPBQXBDIQJDWXU5ELKMQCDependencies
- [2]
KWAGWB73Adding extra dependencies from the config file - [3]
OU243LABSupport for staging - [4]
CCLLB7OIUpgrading to Sanakirja 0.15 + version bump - [5]
I52XSRUHMassive cleanup, and simplification - [6]
G6S6PWZEDo not touch the channel if this is a partial record - [7]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [8]
ZHABNS3SCanonicalize all paths - [9]
DJYHARZ7Skipping old files when recording - [10]
OJZWJUF2MUCH faster `pijul add -r` - [11]
I2D35LLFMore accurate recording of modification time
Change contents
- replacement in pijul/src/commands/record.rs at line 118
&mut txn,txn, - replacement in pijul/src/commands/record.rs at line 126
if let Some((mut change, updates, hash, oldest)) = result {if let Some((mut txn, mut change, updates, hash, oldest)) = result { - replacement in pijul/src/commands/record.rs at line 202
txn: &mut T,mut txn: T, - edit in pijul/src/commands/record.rs at line 211
T, - replacement in pijul/src/commands/record.rs at line 253
txn,&mut txn, - edit in pijul/src/commands/record.rs at line 264
txn.touch_channel(&mut channel.borrow_mut(), None);txn.commit()?; - replacement in pijul/src/commands/record.rs at line 271
.map(|rec| rec.globalize(txn).unwrap()).map(|rec| rec.globalize(&txn).unwrap()) - replacement in pijul/src/commands/record.rs at line 274
LocalChange::make_change(txn, channel, actions, rec.contents, header, Vec::new())?;LocalChange::make_change(&txn, channel, actions, rec.contents, header, Vec::new())?; - replacement in pijul/src/commands/record.rs at line 305
Change::read_and_deps(&mut change, &mut rec.updatables, txn, channel)Change::read_and_deps(&mut change, &mut rec.updatables, &txn, channel) - edit in pijul/src/commands/record.rs at line 334
txn,