Skip to content

kirupa-racquet-club/kirupa-playground-free-play

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kirupa Playground Free Play

Match Type Players Technologies Link
Free Play Free for all Any View

Description

No rules, no restrictions, anything goes, learn as you go, and try not to hurt anyone.

Things to Know

Repository Setup

The default branch is: gh-pages. This means everything that goes into the repo can be accessed over http through:

Using Git

If you're new to git, a pretty good resource is:

There's a lot to digest, but you can find something basic to start from in the list there (or find something that fits your comfort level of learning). A basic workflow for working with files in this repo would be something like (via the command line which is often recommended for first time users of git):

  • Get repo files:
> git clone https://github.com/kirupa-racquet-club/kirupa-playground-free-play.git
> cd kirupa-playground-free-play

You only need to clone once. This brings everything from the server down to your hard drive. Further updates are handled through pull.

  • Committing source-controlled changes locally:
> git add -A
> git commit -am "This describes the changes I made"

Note: git add -A (add all) is only needed if you created new files, otherwise the a flag handles this for changed files in the commit command.

  • Getting up-to-date files from server (generally commit your files first):
> git pull
  • Sending your commited changes to server:
> git pull
> git push origin gh-pages

A pull is called first to make sure you capture any changes from the server since the last time you pulled. With any luck, file merging will be automatic and painless and you can immediately update the server with your changes.

About

No rules, no restrictions, anything goes, learn as you go, and try not to hurt anyone.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published