Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git sandbox for anyone to pull/push to?

Tags:

git

sandbox

Is there a git repository out there on github or elsewhere that allows anyone read write access solely for the purpose of trying out git commands (aka git sandbox)?

One can easily set up their own repository, but a single-person repository does not allow for a fuller range of trying out commands, and a multiple-person repository usually means there are people who are trying to get serious work done and therefore a "sandbox" would not be appropriate.

like image 824
dreftymac Avatar asked May 07 '10 14:05

dreftymac


People also ask

What is Sandbox in git?

Sandbox Git Repository Git is a version control system that we use to track changes to our source code and documentation. You can find a sandbox Git repository where you can practice the Git commands before you put together a patch to resolve a bug or implement a new functionality.

How do I use sandbox in git?

Setting up a sandbox for collaboration Be sure to choose Sandbox instead of Full project. Edit the sandbox project and add your collaborators as maintainers who can maintain issues and commit to the Git repository for the sandbox. Clone the repository you want to fork.

What happens if two people push to git at the same time?

If server detects a conflict when someone pushes data (and if two users are doing this "simultaneously" one of the pushes will be conflicting, because it will be applied only after the other one completes), the server will reject it, and the unlucky user shall then resolve conflicts and try to push again.

What is git push pull fetch?

The git push command is used to upload local repository content to a remote repository. Pushing is how you transfer commits from your local repository to a remote repo. It's the counterpart to git fetch , but whereas fetching imports commits to local branches, pushing exports commits to remote branches.


1 Answers

Don't know. But it's free and easy to create a repo on GithHub. Why not just do so and play with that.

like image 183
drekka Avatar answered Sep 19 '22 12:09

drekka