2024-01-11
Git Clone Without Lfs

lfs download is mandatory while doing git clone

skip with:

1
2
env GIT_LFS_SKIP_SMUDGE=1 git clone --filter=blob:none <repo_url>

Read More

2023-09-16
Sync Notes Between Multiple Platforms/Devices

make webhooks or make git get latest HEAD hash every interval and compare

Read More

2022-10-11
My Notes On Paper, Hand-Written Scripts Backup

see attachments.

it is in a different folder.

sync on macbook:

1
2
bash -c 'cd /Users/jamesbrown/.notable/attachments; git pull origin main; git add .; git commit -m "init commit"; git push origin main'

Read More