Steve Emmerson
Steve Emmerson

Reputation: 7832

What is the git(1) equivalent of "cvs export"?

What is the git(1)-based equivalent of the "cvs export" command, which checks-out a snapshot of the repository without needing or creating any administrative files (imagine that this is the first step executed by an independent continuous-integration server). Does the git(1) equivalent use the git archive command?

Upvotes: 11

Views: 865

Answers (1)

mipadi
mipadi

Reputation: 410542

Yes, git-archive is what you want.

Upvotes: 13

Related Questions