1

Can anybody explain how can use github to store my project. I have created an account,created a repository, uploaded my files to it all these are done mechanically by following their help. But i dont know what to do next. How can i do a second commit. and what is mean by branch please explain it as to a beginner i am not understanding their help too.

Fred Foo
  • 355,277
  • 75
  • 744
  • 836
Sreevisakh
  • 1,896
  • 2
  • 16
  • 23

1 Answers1

3

As noted in the comments, the Git Community Book is a great resource for learning all about git, from basic usage right up to really advanced stuff.

If for some reason that's not to your liking, then this question links to a large number of reference guides for using git. You may want to look at the "beginner's references" section. Also some answers to that question point to GUI tools for Git that you may find useful.

The basic commands you're going to need to learn to use git effectively include add, status, diff, commit, pull, push, checkout, merge, and branch. You can get basic help for each command by using git help followed by the command you need help for (e.g. git help add).

Community
  • 1
  • 1
raveturned
  • 2,637
  • 24
  • 30