【发布时间】:2016-05-02 03:06:54
【问题描述】:
是否有任何快捷方式可以在不选择查看raw file option 的情况下从bitbucket file 复制整个源代码?
【问题讨论】:
标签: git repository bitbucket
是否有任何快捷方式可以在不选择查看raw file option 的情况下从bitbucket file 复制整个源代码?
【问题讨论】:
标签: git repository bitbucket
您可以尝试使用archive the remote repo for one file,使用git archive --remote。
git archive --remote=ssh://host/pathto/repo.git HEAD README.md | tar -xO
【讨论】: