An open API service indexing awesome lists of open source software.

https://github.com/caleorourke/pacman

An old classic written in HTML5.
https://github.com/caleorourke/pacman

css3 html5 html5-canvas javascript pacman php

Last synced: 3 months ago
JSON representation

An old classic written in HTML5.

Awesome Lists containing this project

README

          

# Pacman
An old classic written in HTML5.

## Clone Pacman
Clone from GitHub and go into the directory.

```
$ git clone -b gh-pages https://github.com/caleorourke/pacman.git
$ cd pacman
```

## Duplicate Pacman
Make a fresh clone and go into the directory (example).

```
$ git clone https://github.com/username/mrpacman.git
$ cd mrpacman
```

Create a new `gh-pages` branch.

```
$ git checkout --orphan gh-pages
```

Copy the contents from `/pacman` to `/mrpacman`.

```
$ cp -r ~/pacman/* ~/mrpacman
```

Push your code to GitHub.

```
$ git add .
$ git commit -a -m "first commit"
$ git push origin gh-pages
```