Closed rg3h closed 1 year ago
thank you!
no problem! Somehow when I did my last check in, my local git started giving me errors, so I've not quite wrangled git remote add --track. More understanding of the model needed.
On Wed, Jul 26, 2023 at 6:28 AM spencer kelly @.***> wrote:
Merged #542 https://github.com/spencermountain/wtf_wikipedia/pull/542 into master.
— Reply to this email directly, view it on GitHub https://github.com/spencermountain/wtf_wikipedia/pull/542#event-9924168790, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA5THQRJ6Q7FSUOSACL2MCLXSELQFANCNFSM6AAAAAA2XVGUL4 . You are receiving this because you authored the thread.Message ID: @.***>
I'm not a git expert, but this is how I've done it, in the past:
#setup once
git clone git@github.com:rg3h/wtf_wikipedia.git
cd wtf_wikipedia
git remote add upstream git://github.com/spencermountain/wtf_wikipedia.git
#update fork, periodically
git fetch upstream
git pull upstream master
you can add them as a bash alias, with something like this:
updateFork() {
git fetch upstream
git pull upstream master
}
will take a look at publishing the webpage tmrw, unless the bluejays are playing well - then it'll have to be sunday. have a good weekend
README.md - documentation for sentences API was missing the .text() call README.md - re-ordered images API documentation so it is text(), json(), wikitext() to match the other API documentation.