Uly.me

cloud engineer

  • Home
  • About
  • Archives
Home/Archives for export

November 7, 2012

Git Export

Subversion has an export command when you want a copy of the repository without the .svn directories and files. Git Export is similar to Subversion’s Export command. To export a project in Git, you will need to go to the root of your Git project and issue the following commands.

cd git/project

cd git/project

Create a gzip file or a zip file.

git archive master | gzip > project.tgz

git archive master | gzip > project.tgz

or

git archive master | zip > project.zip

git archive master | zip > project.zip

November 5, 2012

Subversion Export

Subversion Export creates a clean working copy of a project without the .svn folders and files. In this example, the command creates a folder named `project` and places a clean working copy in it.

svn export http://repository/project/trunk project

svn export http://repository/project/trunk project

  • Cloud
  • Linux
  • Git

Copyright © 2012–2021