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

https://github.com/ndevu12/sefaceofafrica-tic-tac-toe

Tic tac toe Challenge
https://github.com/ndevu12/sefaceofafrica-tic-tac-toe

Last synced: 3 months ago
JSON representation

Tic tac toe Challenge

Awesome Lists containing this project

README

        

# SEFaceOfAfrica-tic-tac-toe
Tic tac toe Challenge

## How to contribute

clone repo
```bash
git clone https://github.com/Ndevu12/SEFaceOfAfrica-tic-tac-toe.git
cd SEFaceOfAfrica-tic-tac-toe
```
### Start the server

Run

```javascript
yarn install
yarn dev
```

For Production run

```javascript
yarn start
```

### Push changes

Create a new branch and Pull request for every new changes and wait for pull request approvals

Create new branch

```javascript
git checkout -b
```

Commit changes

```javascript
git add .
git commit -m <'new commit message'>
git push origin
```

### Avoid many commits

To avoid many commit message use the following for committing changes on the existing Pull Request or branch.

```javascript
git add .
git commit --amend --no-edit
git push origin -f
```