I am experimenting with git-annex and I think I must be doing something wrong. I have git-annex installed on the machine. I then did the following
$ mkdir annex
$ cd annex/
$ git init
Initialized empty Git repository in /annex/.git/
$ git annex init "test data"
init test data ok
(Recording state in git...)
$ git annex add --backend=SHA1 .
$ git commit -am "initial repo"
On branch master
Initial commit
nothing to commit
$ touch test.txt # test.txt has a line "this is a test"
$ git annex add .
add test.txt
At this moment, my command line hangs - the git annex add . seems to not be able to complete. Does anyone know what might be wrong?