LuckyLuke
LuckyLuke

Reputation: 1054

Is it possible to have local git repositories in artifactory?

Project will be hosted on premises without connection to public internet. Is it possible to upload git repository in artifactory?

If so, how could I achieve that? Tried to research but what I find that I can only cache repositories from github/ bitbucket... when creating remote vcs ? But this doesn't allow to upload git repo as artefact?

Upvotes: 0

Views: 204

Answers (1)

LeGEC
LeGEC

Reputation: 51830

You can use git archive to create a tar.gz which contains the content of a given commit, and upload that to artifactory.

Upvotes: 1

Related Questions