This board powers and connects sensors to the Pi
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 -uto add any modified files- (Optional)
git clean -nXto see what ignored files can be removedgit clean -fXremoves ignored files (Eagle backups) git commit -m "helpful commit message"with a description of the work that you didgit pushto push your work to github
Other helpful commands
git statussays information about modified and staged filesgit logshows the recent commits of the repositorygit log filename.extensionshow the recent commits for just that filegit checkout first-couple-letter-of-commit-idlets you go back to a previous versiongit checkout masterbrings you back to the latest commitgit taglists the tagsgit tag -a orderX -m "the version of the board placed for the X'th order"tag a specific commitgit push --tagsneeded to push tags to remotegit show orderXshow the commit log for the given taggit checkout orderXgo back and interact with the files at the tagged commit