tags:

views:

29

answers:

1

i have created the git hub account rahul23134 i want to know how to use it and what is the use of this how can i use this .

regards

rahul

+2  A: 

GitHub hosts git repositories. Git is a Distributed Revision Control System which allows you to store source code (or other data) in a versioned repository, and then (if you so desire) share that information and collaborate with other people.

A good free book to get started with using Git is ProGit ( http://progit.org/book/ )

GitHub hosts Git repositories in such a way that it combines a social networking type site with a programming site to create a social programming site. You can just push your git repos up to GitHub to share your code with the world.

Reese Moore
@Reese How i will upload my souce file there on to git hub
Rahul Mehta
@Rahul Mehta Last time I checked a short guide explaining this was displayed after creating a repo on github.
Alexandre Jasmin
@Rahul: See this page ( http://help.github.com/ ) and do the "Getting Started with Git and GitHub" walkthrough and it will give you a good idea of the process. Specifically, this page ( http://help.github.com/creating-a-repo/ ) should tell you how to set up a repo and push code to it. (Though you will need to set up your SSH keypair as is described on the help site).
Reese Moore