https://github.com/machinekoder/machinekit-fff
modular configuration base for Machinekit FFF 3D printers
https://github.com/machinekoder/machinekit-fff
Last synced: 3 months ago
JSON representation
modular configuration base for Machinekit FFF 3D printers
- Host: GitHub
- URL: https://github.com/machinekoder/machinekit-fff
- Owner: machinekoder
- Created: 2015-07-13T13:21:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-05T07:33:46.000Z (over 10 years ago)
- Last Synced: 2023-03-22T19:22:32.179Z (almost 3 years ago)
- Language: Python
- Homepage: http://machinekit.io
- Size: 242 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Machinekit FFF
Modular configuration base for Machinekit [[http://reprap.org/wiki/Fused_filament_fabrication][FFF]] 3D printers.
The primary goal of this repository is to work on a common base for
Machinekit based FFF 3D printers. This repository should simplify
the process of creating new device configurations.
** Using this repository
First start by forking this repository on GitHub. Then add it to your
Machinekit configuration repository:
#+BEGIN_SRC shell
git remote add fff-upstream https://github.com/strahlex/machinekit-fff.git
git subtree add --prefix fff fff-upstream master --squash
#+END_SRC
Make sure to check for upstream updates every once in a while.
#+BEGIN_SRC shell
git fetch fff master
git subtree pull --prefix fff fff-upstream master --squash
#+END_SRC
If you made some changes first fork the [[https://github.com/strahlex/machinekit-fff][machinekit-fff repository on
GitHub]]. Then add the new repository to git and push the changes to a new branch.
#+BEGIN_SRC shell
git remote add fff git@github.com:/machinekit-fff.git
git subtree push --prefix fff fff
#+END_SRC
Now you can create a PR on GitHub to push the changes upstream.