git archive origin/develop | tar -x -C ../katalog/
From the Git Manual:
Using git-checkout-index to "export an entire tree"
The prefix ability basically makes it trivial to use git-checkout-index as an "export as tree" function. Just read the desired tree into the index, and do:
git checkout-index --prefix=git-export-dir/ -a