Skip to content

Commit

Permalink
Update 04-Review-code.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfland authored Jun 16, 2022
1 parent 955ee6e commit 7f7bf9d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions hol/04-Review-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,19 @@

Verify that your own pull request is also merged. Go back to your command line and clean up your local repo:

Switch to the main branch: `git switch main`
Pull the changes with `--prune` or `-p` to delete branches do not longer exist:
1. Switch to the main branch:

```
git switch main
```

2. Pull the changes with `--prune` or `-p` to delete branches do not longer exist:

```
git pull --prune
```

The result should look like this:

```console
$ git switch main
Expand All @@ -85,3 +96,6 @@ $ pull --prune
docs/index.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
```

3. Check that the issue was automatically closed when the PR was merged
4. Check that the bug was fixed and your game is working

0 comments on commit 7f7bf9d

Please sign in to comment.