File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments