Submissions for the HackTruman2017
This directory is formatted with a submission subfolder. Within this subfolder, each team's submission will be their own subfolder with the contents of their project.
-
Fork the repo by clicking the button at the top right
-
Clone your fork
git clone <your-fork-here>
- Add this repo as a the upstream remote to your forked repo
git remote add upstream https://github.com/HackTrumanState/hackTruman2017.git
- Create a branch
<your-project-name>-branch
git checkout master
git pull upstream master # check for updates to avoid conflicts
git push origin master # push updates to your fork to make sure its updated
git checkout -b project-branch-
In the
submissionssubfolder, create a new folder with the name of your project. Copy your project's contents into it. -
Commit those changes and push to your fork
git add .
git commit -am "submission commit for <projectname>"
git push -u origin <your-project-name>-branch- Go to your fork and click
Create pull request, you're done!