我想从存储库中的分支下载所有文件。假设我的 REP 存储库中有 dev 和 master 分支。我想从分支 master 下载所有文件。
如果我git clone
,我会获得所有分支和.git
文件夹。我想要做的只是下载分支内的文件而不需要任何额外的文件。这可能吗?
答案 0 :(得分:0)
如果您的担心是限制带宽,那么您可以
public class SonFactory implements Factory<Son>{
@Inject
InstantionService is;
@Inject
GrandSon gs; //should i put it here?
public Son provide(){
is.getInstantiationData()
return sonImpl;
}
public dispose(Son instance){
// destroy
}
}
public GrandsonFactory implements Factory <GrandSon>{
@Inject
InstantionService is
public GrandSon provide(){
is.getInstantiationData()
return sonImple;
}
public dispose(GrandSon instance){
// destroy
}
}
它只会克隆最后一次提交。
如果您绝对不想要其他文件,可以
git clone --depth 1 http://git_url