Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any test GIT repository available?

Tags:

git

I want to learn git, so is there any online test git repository available, Just for test? so that I can learn how to work with remote GIT repos?

like image 863
SunnyShah Avatar asked Dec 28 '10 19:12

SunnyShah


2 Answers

And here is the repo where you can test do the pull request https://github.com/octocat/Spoon-Knife

like image 143
ssuperczynski Avatar answered Oct 08 '22 06:10

ssuperczynski


Git isn't like SVN in that you don't need a central repo. What you can do is take a directory full of files and make a copy. In the copy, run "git init" and voila, you have a git repo to play with. You can even clone from it locally and practice pushing and pulling. You can do this all without even being connected to the internet.

like image 37
siride Avatar answered Oct 08 '22 05:10

siride