Reputation: 99
I want to know if at some point, we decide to stop using Atlassian Stash, is it going to be possible to still access our git repos or will we be out of luck?
Upvotes: 2
Views: 66
Reputation: 99
After looking in to this a bit more, I've realized that you can't really just stop using Stash and continue to access the same repo on the same origin. The origin of a repo checked out from a Stash server points to that Stash server which is what manages access to the repo.
If I want to stop using Stash, I simply need to change my origin and push the code to the new location. This could be a git server on the same server that Stash was on or it could be a completely different server. At that point, Stash will no longer be part of the equation.
Upvotes: 0
Reputation: 44535
Atlassian Stash uses just regular Git repositories, so if you remove Stash, just move your repositories to another repository manager to access them with HTTP (or move them to a folder, where you can access with a file:// path).
Upvotes: 2