Skip to content

Commit 0a69301

Browse files
authored
Create CONTRIBUTING.md
1 parent 69682f1 commit 0a69301

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

CONTRIBUTING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
1. **Fork the repository**: Start by forking the repository to your own GitHub account.
2+
3+
2. **Clone the repository**: Clone the forked repository to your local machine.
4+
```bash
5+
git clone https://github.com/Vpekdas/unity-junior-gameplay-mechanics-prototype-4
6+
```
7+
8+
3. **Create a new branch**: Create a new branch for each feature or bug fix you're working on.
9+
```bash
10+
git checkout -b your-branch-name
11+
```
12+
13+
4. **Commit your changes**: Commit your changes.
14+
```bash
15+
git commit -m "Your commit message"
16+
```
17+
18+
5. **Push your changes**: Push your changes to your forked repository on GitHub.
19+
```bash
20+
git push origin your-branch-name
21+
```
22+
23+
6. **Create a pull request**: Go to your forked repository on GitHub and create a new pull request against the master branch.

0 commit comments

Comments
 (0)