Difference between revisions of "GIT for OOP344 Projects"

From CDOT Wiki
Jump to: navigation, search
(Command line or GUI Tools)
(Clone the repository)
Line 23: Line 23:
  
 
=Clone the repository=
 
=Clone the repository=
The first step is to clone the repository since it contains the initial files to start the project.
+
The first step is to clone the project repository, since it contains the initial files to start the project.
 
<big><pre>
 
<big><pre>
 
git clone git@github.com:Seneca-OOP344/REPONAME.git
 
git clone git@github.com:Seneca-OOP344/REPONAME.git

Revision as of 15:50, 29 October 2012


OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
UNDER CONSTRUCTION
This page is to give a brief guideline of how to use github for OOP344 or other school projects.

Command line or GUI Tools

Please use any of the Tools you are more comfortable to work with git. There are several GUI interfaces that may make working with git easier for you. here are few examples: (feel free to add more if you know of any):

Resources

  • Amazing article on how work is done on a project using github. Read this and you will understand how it is done:Scott Chacon' Github Flow

Teams and their Repository

Logging to your github account you will notice that you are now member of a team that carries a similar name to your team name. Also you have full access to a repository with the same name.

Clone the repository

The first step is to clone the project repository, since it contains the initial files to start the project.

git clone git@github.com:Seneca-OOP344/REPONAME.git

REPONAME is the name of the project repository on github

Assign the issues

  1. check the Issues on The CIO Framework page and assign each of them to two members, one for development and another for code review and pulling the code back to master repository
  2. list all the issues in your team page that is built based on the team page template.
  3. create the issues on github assigning them to the team members
    It is recommended to create a milestone and attach /assign it to the issue for follow up

Branch the master repository

  1. Each team member now branches the master repository under a relative name to the issue she/he is working on.
    git branch IssueNameOrID
  2. switch your repository to the branch created
    git checkout IssueNameOrID
  3. push the branch back to github
    git push --set-upstream origin IssueNameOrID

Work on the issue

  1. Never work on the master branch.
  2. Start working on the issue in the branch related to the issue committing regularly
  3. Push the changes to the branch back to github constantly to share.
    By doing this you can discuss your code and problems with your professor and team members and also demonstrate your work habits.

Pull request

  1. push final changes to github
  2. when task is completed create a pull request to merge back the branch to the master repository.
  3. assign the pull request to the team member responsible for code review

Review the code

This is done by the student assigned to review this code

  1. Review the code and make sure it is proper and is working as defined in the issue.
  2. Share your concerns with your team-mates through the discussion board, attached to the issue/pull request.
  3. If there is problem, ask the person who wrote the code to revise and correct the mistakes

Merge the code back to master repository

  1. when ready, merge the branch back to the master branch
  2. resolve possible conflicts
  3. test the master repository one last time
  4. close the pull request.

Pull the new changes to master repositories

Now all the team members call pull the changes into their master repositories and branch for the next issue