如何在不打开原始(bitbucket)的情况下复制完整源代码
How to copy full source without opening raw(bitbucket)
是否有任何快捷方式可以在不选择视图 raw file option
的情况下从 bitbucket file
复制整个源代码?
你可以试试archive the remote repo for one file, using git archive --remote
。
git archive --remote=ssh://host/pathto/repo.git HEAD README.md | tar -xO
是否有任何快捷方式可以在不选择视图 raw file option
的情况下从 bitbucket file
复制整个源代码?
你可以试试archive the remote repo for one file, using git archive --remote
。
git archive --remote=ssh://host/pathto/repo.git HEAD README.md | tar -xO