Skip to content

Commit

Permalink
Merge pull request #146 from /issues/145-document-upstream
Browse files Browse the repository at this point in the history
Fix #145: Document working with upstream
  • Loading branch information
banterCZ authored Jun 21, 2024
2 parents a2cb94c + cf3706d commit 54d2a3e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs-private/GitHub.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# GitHub

This project `enrollment-server-wultra` is a downstream project of `enrollment-server`.


## Setup a remote repository

```shell
git remote add upstream [email protected]:wultra/enrollment-server.git
```

See [Configuring a remote repository for a fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork) for details.


## Merge upstream

```shell
git checkout -b issues/merge-upstream
git fetch upstream
git merge upstream/develop
git push -u origin issues/merge-upstream
```

0 comments on commit 54d2a3e

Please sign in to comment.