LinuxCommandLibrary

git-annex

Manage files with git, without checking their contents in.

TLDR

Initialize a repo with Git annex

$ git annex init
copy


Add a file
$ git annex add [path/to/file_or_directory]
copy


Show the current status of a file or directory
$ git annex status [path/to/file_or_directory]
copy


Synchronize a local repository with a remote
$ git annex [remote]
copy


Get a file or directory
$ git annex get [path/to/file_or_directory]
copy


Display help
$ git annex help
copy

Copied to clipboard