Skip to content

Commit

Permalink
Update CONTRIBUTING.md
Browse files Browse the repository at this point in the history
FIx ordered list numbers
  • Loading branch information
tomasvana10 authored May 26, 2024
1 parent 0235a8a commit 62398b7
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ When contributing to this project, you must agree that you have authored 100% of
Then, submit a pull request:
1. Create a fork of crossword_puzzle

3. Clone your fork locally on your computer (requires git):
2. Clone your fork locally on your computer (requires git):
```
git clone https://github.com/<your_name>/crossword_puzzle.git
cd crossword_puzzle
```

4. Make a new branch:
3. Make a new branch and switch to it:
```
git checkout -b <your_branch_name>
```

3. Make your changes, for example:
4. Make your changes, for example:
```
git rm requirements.txt
git add .
git commit -m "Removed requirements.txt"
```

4. Push the changes you have made to your repo:
5. Push the changes you have made to your repo:
```
git push --set-upstream origin <your_branch_name>
```
Expand All @@ -33,10 +33,8 @@ Or, you can try
git push remote origin
```

5. Create a pull request:
6. Create a pull request:
- Navigate to your repo's main page
- Go to pull requests
- Set the "compare" option to your new branch name
- Add some information and submit your changes


0 comments on commit 62398b7

Please sign in to comment.