Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Aidan Heerdegen <[email protected]>
  • Loading branch information
CodeGat and aidanheerdegen authored Sep 27, 2024
1 parent be15f50 commit e69194c
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,23 +168,15 @@ To update a configuration that you're using, you can do the following:

```bash
git fetch --tags # Make sure your repository has all of them!
git tag --list release-CONFIG-* # List all available tags for CONFIG
```

You can then pick out a config tag that you want to upgrade like so:

```bash
git checkout release-CONFIG-VERSION
git merge release-CONFIG-VERSION
```

If you have made local modifications to the configuration yourself, you will have to stash and unstash your changes, and possibly resolve some conflicts:

```bash
git stash
git checkout release-CONFIG-VERSION
git stash pop
# Maybe do some `git status` if there are conflicts that you need to resolve
```
[Resolve any conflicts](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line?platform=linux), add the modified files and then `git commit` with an informative commit message about the version update.

### Checks

Expand Down

0 comments on commit e69194c

Please sign in to comment.