File on laptop have this new line and repo dont, cksum are different too.
$ head tag.sh
#!/usr/bin/env bash
set -x -e
source ./functions.sh
cd ..
rm -rf linux2x-data
mkdir linux2x-data
cd linux2x-data
$ cksum tag.sh
3007785107 728 tag.sh
$
remote repo:
$ head tag.sh
#!/usr/bin/env bash
set -x -e # <--- here should be a new line.
source ./functions.sh
cd ..
rm -rf linux2x-data
mkdir linux2x-data
cd linux2x-data
pijul init repo
$ cksum tag.sh
3456851116 727 tag.sh
my laptop vs. linux2x repo.
This is latest record, this change have both laptop and remote repo.
I have edited a file and add new line on line #2.
File on laptop have this new line and repo dont, cksum are different too.
remote repo:
See, one byte is lost.