A repo designed to hold all Altium design files.
Get the most recent changes and branches: git pull
Create your own branch to start work on: git branch feature/<project-name>/<your-name>
Switch to that branch: git checkout <branch-name>
Start work on your project!
Make sure you're on the right branch (current branch highlighted in green): git branch -la
Stage current directory's changes (should be in highest level of repo): git add .
Commit your changes: git commit -m "Commit Message"
Push your changes to GitHub: git push
The first time you push from your new branch may have to set the remote endpoint:
git push --set-upstream origin feature/<project-name>/<your-name>