Last active
June 15, 2025 15:47
-
-
Save Jimut123/ebd56a02b7520603276c27a779fb4290 to your computer and use it in GitHub Desktop.
Zotero Set Up in Linux/Mac using Git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/Zotero | |
git init | |
git config --global init.defaultBranch main | |
git remote add origin https://<token>@github.com/jimut123/<repo-name>.git | |
git add . | |
git commit -m "init" | |
git push --set-upstream origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment