Skip to content

Commit

Permalink
Merge pull request #1028 from jfmartinz/fix-alignment
Browse files Browse the repository at this point in the history
[Docs] Fix code blocks alignment in README.md
  • Loading branch information
akshitagupta15june authored Jul 7, 2023
2 parents a9b6abf + bc08ba7 commit e214bed
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,34 +137,34 @@ See the [open issues](https://github.com/akshitagupta15june/Moksh/issues) for a
2. Clone your forked repository

```sh
git clone https://github.com/<your_github_username>/Moksh.git
git clone https://github.com/<your_github_username>/Moksh.git
```
3. Now go ahead and create a new branch and move to the branch
```sh
git checkout -b fix-issue-<ISSUE-NUMBER>
```
```sh
git checkout -b fix-issue-<ISSUE-NUMBER>
```
4. After you have added your changes, follow the following command chain
* Check the changed files
```sh
git status -s
```

* Add all the files to the staging area
```sh
git add .
```
or
```sh
git add <file_name1> <file_name2>
```
Check the changed files
```sh
git status -s
```

* Add all the files to the staging area
```sh
git add .
```
or
* Commit your changes
```sh
git commit -m "<EXPLAIN-YOUR_CHANGES>"
```
```sh
git add <file_name1> <file_name2>
```
```sh
git commit -m "<EXPLAIN-YOUR_CHANGES>"
```
5. Push your changes
```sh
git push origin fix-issue-<ISSUE-NUMBER>
```
```sh
git push origin fix-issue-<ISSUE-NUMBER>
```
6. Open a Pull Request
## 👩‍💻 Project Admin

Expand Down

0 comments on commit e214bed

Please sign in to comment.