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.
- Host: GitHub
- URL: https://github.com/caleorourke/pacman
- Owner: caleorourke
- Created: 2015-08-15T20:34:21.000Z (almost 11 years ago)
- Default Branch: gh-pages
- Last Pushed: 2018-08-09T03:55:03.000Z (almost 8 years ago)
- Last Synced: 2025-10-24T15:56:20.297Z (8 months ago)
- Topics: css3, html5, html5-canvas, javascript, pacman, php
- Language: JavaScript
- Homepage: http://caleorourke.github.io/pacman
- Size: 3.83 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```