code4lib / 2018.code4lib.org

site for the 2018 code4lib conference in Washington, DC
http://2018.code4lib.org
6 stars 10 forks source link

Copy wiki documentation from last year #6

Closed phette23 closed 7 years ago

phette23 commented 7 years ago

I haven't investigated a ton but I see that a wiki's repo is available at

https://github.com/code4lib/2018.code4lib.org.wiki.git

So I think we could clone the 2017 repo's wiki and push it up to this one but I'm not sure.

phette23 commented 7 years ago

Hey-o! For posterity, the process was very simple:

# clone the 2 wikis
git clone https://github.com/2017.code4lib.org.wiki.git
git clone https://github.com/2018.code4lib.org.wiki.git
# copy last year into this year, overwriting whatever exists
cp 2017.code4lib.org.wiki/* 2018.code4lib.org.wiki
# add changes & push to github
cd 2018.code4lib.org.wiki
git add .
git commit -m 'copy wiki from last year'
git push