Skip to content

Commit

Permalink
Merge pull request #984 from swcarpentry/align-indentation
Browse files Browse the repository at this point in the history
Align indented lines on list items
  • Loading branch information
martinosorb authored Mar 25, 2024
2 parents 18fa240 + 829dd09 commit e960a49
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions episodes/04-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,19 +622,19 @@ Which command(s) below would save the changes of `myfile.txt`
to my local Git repository?

1. ```bash
$ git commit -m "my recent changes"
```
$ git commit -m "my recent changes"
```
2. ```bash
$ git init myfile.txt
$ git commit -m "my recent changes"
```
$ git init myfile.txt
$ git commit -m "my recent changes"
```
3. ```bash
$ git add myfile.txt
$ git commit -m "my recent changes"
```
$ git add myfile.txt
$ git commit -m "my recent changes"
```
4. ```bash
$ git commit -m myfile.txt "my recent changes"
```
$ git commit -m myfile.txt "my recent changes"
```

::::::::::::::: solution

Expand All @@ -659,11 +659,11 @@ The staging area can hold changes from any number of files
that you want to commit as a single snapshot.

1. Add some text to `mars.txt` noting your decision
to consider Venus as a base
to consider Venus as a base
2. Create a new file `venus.txt` with your initial thoughts
about Venus as a base for you and your friends
about Venus as a base for you and your friends
3. Add changes from both files to the staging area,
and commit those changes.
and commit those changes.

::::::::::::::: solution

Expand Down

0 comments on commit e960a49

Please sign in to comment.