Skip to content

Commit 5ca3f82

Browse files
authored
Merge pull request #11 from Premian-Labs/dk/rebase
feat: Add instructions for syncing fork with upstream
2 parents b899f0a + cc7c194 commit 5ca3f82

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
# eRPC Railway Template
44
This is our implementation of eRPC, it's not perfect, but it's ours.
5+
This template is a fork of the upstream [erpc/erpc](https://github.com/erpc/erpc) repository. If you want to keep your fork in sync with the upstream repository, you can add the upstream remote using:
6+
7+
```bash
8+
git remote add upstream https://github.com/erpc/erpc.git
9+
git fetch upstream
10+
```
11+
12+
Then you can merge changes from upstream into your fork:
13+
14+
```bash
15+
git checkout main
16+
git merge upstream/main
17+
```
518

619
<a href="https://docs.erpc.cloud"><img alt="Docs" src="https://img.shields.io/badge/docs-get%20started-brightgreen"/></a>
720
[![Telegram chat][tg-badge]][tg-url]

0 commit comments

Comments
 (0)