explanation.txt 441 B

12345678
  1. git remote add rubenwardy https://github.com/rubenwardy/minetest # this adds the remote
  2. git fetch rubenwardy formspecprepend # this fetches that branch only; without args it fetches all
  3. git checkout -b rw-formspecprepend rubenwardy/formspecprepend # checks it out and creates a tracking branch
  4. # if new commits are added:
  5. git fetch rubenwardy formspecprepend
  6. git checkout rw-formspecprepend
  7. git merge --ff-only rubenwardy/formspecprepend