Top "Git-archive" questions

For questions about git-archive, a Git sub-command used to create an archive from part of a Git repository.

Do a "git export" (like "svn export")?

I've been wondering whether there is a good "git export" solution that creates a copy of a tree without the .…

git export git-archive svn-export
how to close a branch in git

When I know I won't use a branch any more is it possible to close or lock it? Actually I …

git git-branch git-tag git-archive
What does tree-ish mean in Git?

I'm very confused about how to use git archive. I have a git repository with folder Foo, Bar and Baz …

git git-archive
git archive fatal: Operation not supported by protocol

I'm trying to checkout part of remote git repository. As recommended here, with help of command git archive --format=zip …

git git-checkout git-archive
git-archive a subdirectory --

I'm using git-archive to archive a subdirectory in a git repo, like so: git archive -o ../subarchive.zip HEAD subdir/* …

git subdirectory git-archive
git archive export with submodules (git archive all / recursive)

I have a website directory versioned with git. I use submodules for required libraries like Twitter Bootstrap, colorbox and lessjs …

git-submodules git-archive
How do I exclude files from git archive?

Given a simple test repository with a single commit with two files, a and b, I can get a list …

git git-archive