Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Set up a git repository for the site on https://git.library.cornell.edu/ - example https://git.library.cornell.edu/featureserver_test_library_cornell_edu

Next, push a local file into the repository to establish a connection with git.

Code Block
mkdir featureserver_test_library_cornell_edu
cd featureserver_test_library_cornell_edu
git init
touch README.txt
git add README.txt
git commit -m 'first commit'
git remote add origin git@git.library.cornell.edu:featureserver_test_library_cornell_edu.git
git push -u origin master

...