*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
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 |
...