Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1020 Bytes

README.NAPKIN.md

File metadata and controls

39 lines (29 loc) · 1020 Bytes

Napkin README

In order to synk Napkin fork with the source repository, you can follow instructions from https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork

One time local setup:

$ git remote -v
> origin  https://github.com/YOUR-USERNAME/dart_pdf.git (fetch)
> origin  https://github.com/YOUR-USERNAME/dart_pdf.git (push)
git remote add upstream https://github.com/DavBfr/dart_pdf.git
$ git remote -v
> origin  https://github.com/YOUR-USERNAME/dart_pdf.git (fetch)
> origin  https://github.com/YOUR-USERNAME/dart_pdf.git (push)
upstream	https://github.com/DavBfr/dart_pdf.git (fetch)
upstream	https://github.com/DavBfr/dart_pdf.git (push)

Syncing the fork (https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork):

$ git fetch upstream
$ git checkout napkin
$ git merge upstream/master

Resolve potential conflicts, push, tag...