Petfinder Project 5Git WorkflowAdd new file(s) OR Make Changes to file(s)Stage changes git add -ACommit changes git commit -m "message"Push commit to your repo git push origin masterGoto YOUR version of the repo on GitHubMake a new pull requestEveryone Needs to then review and approve the changesThen pull the changes from the group repo git pull upstream masterStyle Guidetab characters: spacestab size: 4sass method: no bemsass style: camelCasefile/folder names: all lower, underscores for spacesSetupSublime SetupIn sublime open Preferences>SettingsAdd these settings to the bottom of the User settings "translate_tabs_to_spaces": true, "tab_size": 4Git setupFork this repo (Button in the top right corner)Clone the forked repo into your projects folder git clone URL_FOR_YOUR_FORKED_REPOChange directory cd petfinderAdd this repo as a remote called upsteam git remote add upstream https://github.com/petfinderProject5/petfinder.git