Git Annex Cheatsheet
ยท
142 words
ยท
1 minute read
git annex: Manage files with Git, without checking their contents in.
When a file is annexed, its content is moved into a key-value store, and a symlink is made that points to the content.
Initialize a repo with Git annex:
git annex init
Add a file:
git annex add path/to/file_or_directory
Show the current status of a file or directory:
git annex status path/to/file_or_directory
Synchronize a local repository with a remote:
git annex remote
Get a file or directory:
git annex get path/to/file_or_directory
Display help:
git annex help
For more info, check the official docs: https://git-annex.branchable.com .
I hope this post helps you. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .