Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/levidavidmurray/grant-game

20 Second Game
https://github.com/levidavidmurray/grant-game

Last synced: about 2 months ago
JSON representation

20 Second Game

Awesome Lists containing this project

README

        

# Grant Game
20 Second Game


## Contributing

### 1. Commit changes to fork
```bash
git add .
git commit -m "brief description of changes"
git push
```

### 2. Open Pull Request
Open a pull request in order for your changes to be synced to the main repo
##### 1. Go to the main repo https://github.com/levidavidmurray/grant-game
##### 2. Click [_Pull requests_](https://github.com/levidavidmurray/grant-game/pulls)
##### 3. Click _New pull request_
##### 4. Click _Compare across forks_
##### 5. Change *head repository* to your fork
##### 6. Click _Create pull request_
##### 7. Add description of changes and click _Create pull request_

---
## Updating Fork (Sync main repo to your fork)

### 1. Sync your fork's repo (update branch)
![image](https://user-images.githubusercontent.com/46084870/203775191-f0a95312-4577-4609-ad81-98b789bf84b8.png)

### 2. Pull changes to your local project
```bash
cd grant-game
git pull
```

---
## (Miscellaneous) Git Operations

#### Pull Changes
```bash
git pull
```

#### Push All Changes
```bash
git add .
git commit -m "brief description of changes"
git push
```

#### Push Specific Files
```bash
git add EnemySpawner.gd someImg.png
git commit -m "Updated enemy spawner, added new enemy image"
git push
```