This board routes signals and power between all the boards
Whenever you make a new part, download the datasheet and save it here and with the part in the parts library
Always pull other people's changes before beginning to work
git pull
Be sure to push your changes after working on them. Run:
git add .
to add any files in this directory or a subdirectory orgit add -u
to add any modified files- (Optional)
git clean -nX
to see what ignored files can be removedgit clean -fX
removes ignored files (Eagle backups) git commit -m "helpful commit message"
with a description of the work that you didgit push
to push your work to github
Other helpful commands
git status
says information about modified and staged filesgit log
shows the recent commits of the repositorygit log filename.extension
show the recent commits for just that filegit checkout first-couple-letter-of-commit-id
lets you go back to a previous versiongit checkout master
brings you back to the latest commitgit tag
lists the tagsgit tag -a orderX -m "the version of the board placed for the X'th order"
tag a specific commitgit push --tags
needed to push tags to remotegit show orderX
show the commit log for the given taggit checkout orderX
go back and interact with the files at the tagged commit