This week I worked on starting the writing portion - all that I really have to add is the code for my final page and a description of any other challenges faced / processes taken. I also set up a Github repository but kept getting errors when I tried to push my files up. I generated a new ssh key and also just tried cloning the https, neither would work. Maybe we can talk about this some in tutorial today?
Things left to do include:
- add South Pond Loop (and possibly the trail connecting to Lower Loop by the Marlboro farm)
- get zoom levels working with trail width and building labels
We made some progress with git.
From this discussion
saw that git was using the wrong ssh program.
Typed this at the command line to point it the right way.
(This could also be put into ~/.profile to run at start of shell.)
export GIT_SSH=/usr/bin/ssh.exe
Then everything worked, managed to create laptop repo
git clone ....
Workflow now is :
(1) cd to that folder
(2) edit or add files
(3) git add filenames
(4) git commit -m "your annotation here of these changes"
(5) git push