-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github wiki subtree merged in wiki/ #57
Conversation
…le names, for those not using a Linux package manager, and flesh out the manual installation section.
01c8943
to
b73848b
Compare
|
this merge is now ready for review - once this is merged, I guess we should just delete or disable the wiki somehow. |
This was performed with:
git clone https://github.com/Git-Mediawiki/Git-Mediawiki.wiki.git
cd Git-Mediawiki.wiki
git filter-branch --tree-filter 'mkdir -p docs ; mv *.md docs/' HEAD
cd ../Git-Mediawiki
git remote add -f wiki ../Git-Mediawiki.wiki
git merge --allow-unrelated wiki/master
This was prefered over a subtree merge because history is followed
properly. It is a known issue that subtree merges cannot follow
history:
https://stackoverflow.com/a/14448022/2408130
b73848b
to
5a99f5b
Compare
|
i redid the merge using a filter-branch technique because the previous subtree merge approach fails to follow history properly. |
|
Nice. Note that the wiki contained a lot of drafty or not up-to-date stuff. The user-manual is the only really important part. It's nice to have other pages in our history but it'd also be nice to do a bit of cleanup. |
|
well, yes, there is an infinity of improvements to do everywhere. I'm just trying to fix the obvious stuff i have in my pipeline that follow from the move from core git. and it's not easy to just keep up with that so "cleanups" will wait until someone else (tm) steps in to do those. ;) |
Merge wiki into docs/ directory
This was performed with:
This was prefered over a subtree merge because history is followed
properly. It is a known issue that subtree merges cannot follow
history:
https://stackoverflow.com/a/14448022/2408130
Closes: #9