Skip to content

SeeCodeRun 101: Our project workflow

David Gonzalez edited this page May 18, 2016 · 6 revisions

#Define issues In Github, we create an issue with suggested changes. #Create a branch for the issue Make sure your local repository is up to date

git pull
git pull master

In this case, your reference branch (the branch you are pushing to). Now, we create the branch:

git checkout -b issueXXX

Clone this wiki locally