felixge / godrone

GoDrone is a free software alternative firmware for the Parrot AR Drone 2.0.
http://www.godrone.io/
Other
205 stars 22 forks source link

Docs #46

Closed jeffallen closed 9 years ago

jeffallen commented 9 years ago

This is a set of commits sowing what was in the v1 docs directory, and how it got to be that way. This is a basis for a review of the docs to update them for the current version.

To bring a subdirectory (and its history) back from an old branch, I did this:

git checkout v1 mkdir /tmp/p cd docs

4374... is the commit with the first addition to the docs dir. ^ says the one before,

without it we skip the first checkin. "." says, "only include changes to files under $CWD"

git format-patch -o /tmp/p 437468549141e4d975ab93855330c516405b524f^ . git checkout -b docs master git am /tmp/p/*

felixge commented 9 years ago

Very cool! Thank you so much :sparkling_heart: !

PS: I'm currently a bit busy catching up with work stuff, but will probably have some hack time again this weekend or earlier!