ET2020
ET2020

Reputation: 63

Can I use git or another versioning system to private repository on http hosting acount without ssh?

I have 2 www/ftp accounts with php and sql in hosting companies but I haven't access to ssh. Can I install there any Version Control System like git or Mercurial? Or is any public free site to set up a private encoding developing repository?

Upvotes: 4

Views: 319

Answers (6)

RooiWillie
RooiWillie

Reputation: 2228

Also have a look at Perforce Helix Team Hub. 1 - 5 users and 1GB / year is free.

Upvotes: 1

Stephen C
Stephen C

Reputation: 719149

Can I install there any Version Control System like git or Mercurial?

Neither Git, Mercurial or any of the other mainstream VCSs are implemented in PHP, so you won't be able to implement them on your hosting account. However, there are some possible alternatives that showed up in a quick Google search:

I cannot comment on how good these VCSs are, what features they implement, how reliable or well-supported they are ... or even whether they are free.

Or is any public free site to set up a private encoding developing repository?

There are a number of free public hosting sites for open source projects. But I don't know if any of them offer free hosting for private projects. (What is the "public good" in providing free hosting to a private project?)

Upvotes: 2

Matthew Schinckel
Matthew Schinckel

Reputation: 35629

BitBucket is free, including for private repositories up to 5 users.

Upvotes: 5

VonC
VonC

Reputation: 1326366

Look at bettercodes.org: they do offer some free private space.

Upvotes: 1

Nick
Nick

Reputation: 6965

We use Codebase to manage our projects and repository hosting (unlimited repositories, but there is a disk space allowance), with Deploy to manage our deployments. They've got a free plan on both applications.

Upvotes: 1

sarnold
sarnold

Reputation: 104080

GitHub is quite cheap for small users.

Upvotes: 1

Related Questions