Do a “git export” (like “svn export”)?

后端 未结 30 2876
暖寄归人
暖寄归人 2020-11-21 22:33

I\'ve been wondering whether there is a good \"git export\" solution that creates a copy of a tree without the .git repository directory. There are at least thr

30条回答
  •  感情败类
    2020-11-21 22:49

    The equivalent of

    svn export . otherpath
    

    inside an existing repo is

    git archive branchname | (cd otherpath; tar x)
    

    The equivalent of

    svn export url otherpath
    

    is

    git archive --remote=url branchname | (cd otherpath; tar x)
    

提交回复
热议问题