Skip to content

Commit

Permalink
doc: Update README to include instructions for adding upstream remote…
Browse files Browse the repository at this point in the history
… repository
  • Loading branch information
jmcerrejon committed Nov 13, 2024
1 parent 8f1b199 commit d608725
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ If you want to use the customizer script, run the following command:
./scripts/boilerplate-customizer.sh
```

If you want to start a new project once you have cloned the repository, remove the `.git` directory and start a new git repository:
If you want to start a new project once you have cloned the repository, remove the `.git` directory and start a new git repository. But, maybe you want to get updates from this repository. You can add it as a remote upstream:

```bash
rm -rf .git
git init
# (Optional) Add the remote repository as upstream
git remote add upstream git@github.com:jmcerrejon/another-fastapi-template.git
```

## Running
Expand Down

0 comments on commit d608725

Please sign in to comment.