This file gets rebuilt every time we run ./docsbuilder.sh -p and is not useful outside of one's local system.
./docsbuilder.sh -p
Signed-off-by: Michael Winters fedora@mwinters.net
Intentionally extremely simple PR. My first! More of a smoke test than anything, to make sure I'm doing this right.
rebased onto 0ad40057fb42dc355420d812ebc597cb96d06ffc
Can you add a bit of info in the commit about why we want to ignore this? ;)
Otherwise it looks completely reasonable to me.
Can you add a bit of info in the commit about why we want to ignore this? ;) Otherwise it looks completely reasonable to me.
Noob questions:
Yeah, if it's just a comment change you can do:
git rebase -i HEAD
and edit the comment, then do 'git push --force' to push the change to your fork (the pr will automatically update).
If you want to squash commits, what I do is:
make the new commit git rebase -i HEAD~2 (or however many commits) tell it to squash the second and later ones, update the comment git push --force
Done!
Cool. Thanks!
Pull-Request has been merged by kevin
This file gets rebuilt every time we run
./docsbuilder.sh -pand is not useful outside of one's local system.Signed-off-by: Michael Winters fedora@mwinters.net