NOTE: This is a fork of the original, https://github.com/EmbroidePy/pyembroidery.
Releases to PyPi are published from the EmbroidePy repository.
This fork differs from upstream in several ways:
- We have a differeng G-code writer that satisfies the needs of Ink/Stitch users.
- Our primary branch is named
main
. - We have a couple of changes and bug-fixes.
To pull in changes from https://github.com/EmbroidePy/pyembroidery, do the following:
- Clone this repository.
- Add a remote for
upstream
:git remote add upstream [email protected]:EmbroidePy/pyembroidery
- Fetch upstream:
git fetch upstream
- Rebase our changes on upstream's:
git rebase upstream/master
- If there are conflicts:
- fix the conflicting files
- do
git add <file>
for all conflicting files - do
git rebase --continue
- Force-push the
main
branch toinkstitch/pyembroidery
.
You can also skip a conflicting commit if upstream applied the same fix (git rebase
's output will tell you how to skip).