13

Possible Duplicate:
Is there a commercial grade Git server product
Is there a Github clone that I can run on my own server?

Can i use Git without GitHub's service? What i mean is, i am only the person working on the project and don't want to push the project into the Git space. What do you think? Will this be a right decision? Or is there any lite github like server application available for internal use? Please share your thoughts.

Community
  • 1
  • 1
Salsan Jose
  • 151
  • 1
  • 1
  • 9
  • 12
    Marked as duplicate, yet neither of the linked-to "duplicate" questions actually answers this question. The first "duplicate" refers to a commercial-grade Git product (not the focus of this question). The second "duplicate" refers to a GitHub clone (also not the focus of this question). –  May 25 '14 at 09:22

4 Answers4

10

Yes, git is independent of GitHub. If you push your source to GitHub the with a free account your project will need to be 'public' meaning anyone can read it. Other companies offer free private git repositories (I use Assembla). But you can actually use git without any server as well, to maintain local version control. This is definitely good practice anyway. A server would give you the added advantage of off site backup.

Mayur Shah
  • 3,344
  • 1
  • 22
  • 41
ikuramedia
  • 6,038
  • 3
  • 28
  • 31
3

You can pass through http://githowto.com/ , to gain basic GIT skills

AGo
  • 284
  • 2
  • 6
1

I use version control irrespective of whether I share it with the likes of GitHub.

Version control for me means more than just offsite back up.

It means I'm able to experiment with any and all of my ideas (and the subsequent code) without fear of losing anything (at least in terms of stuff on my machine in this scenario) and can always branch or roll back depending on what's needed.

lzcd
  • 1,325
  • 6
  • 12
0

In general, if you work in teams, having a github-like functionality is really nice (but not strictly necessary)

gitorious is a an open-source github-like (but will a lot less functionality) server application that you can install in-house. github also has this option, but it costs a lot.

sylvain.joyeux
  • 1,659
  • 11
  • 14