aboutsummaryrefslogtreecommitdiff
path: root/doc/forum/Add_file_to_git_index_while_in_direct_mode.mdwn
blob: e1678e95c740fed802795efb2f37bf1a474f7cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Hi, 

Is there a preferred way to add files to git's index (instead of the annex) while in direct mode? 

I am trying to use git-annex for scientific data. On linux and mac in indirect mode, the git workflow is basically unchanged, and I really like the way git annex works. Unfortunately when I use git-annex on Windows, I have not found a good way to add things to git's tree. 

I've tried two things:

```
$ git annex proxy -- git add smallfile
```

This is slow because it has to copy things over to create a work tree

```
$ git config annex.largefiles="*.pdf or *.h5"
$ git annex add largefile.pdf
```

This doesn't seem to work as well as I'd like either. I'd like the equivalent of a ```git add``` command in direct mode.