Skip to content

Latest commit

 

History

History
89 lines (69 loc) · 3.45 KB

a-git-github-workflow.md

File metadata and controls

89 lines (69 loc) · 3.45 KB

A Git & Github Workflow

Always

  • Setup global_gitignore. Make sure you ignore database.yml file and log files.
  • We never ever ever submit a pull request with failing tests, like ever.
  • Group and Final projects must have Travis CI setup.

Basic Git Flow

  1. Pull to update your local master
  • Work in a branch
  • Your work should happen in a series of small and concise commit messages. Basically, your solution shouldn’t be a 1 gigantic commit.
  • Rebase frequently to incorporate upstream changes on master
  • Continuously push your branch to github.
  • When you’re done with your feature, interactive rebase and squash your commits as appropriate
  • Force push your cleaned up branch to Github
  • Submit a pull request to have your work reviewed and merged

Branch style workflow

  • Clone the challenge repo.
  • Create your own branch using github usernames separated by dashes, e.g. shadi-topher
  • Follow basic git flow
  • We never ever ever push to master, like ever.

Fork style workflow

This is the workflow used for open source projects. It allows the maintainers to limit who can commit directly to master, while opening the source and contributions to everyone.

Setup

  1. Create a repository in your cohort organization with: README file and a license
  • Add a CONTRIBUTING.md file
  • Fork the repository to your Github account
  • Clone the repository in your account to your computer
  • Add a “remote” (link) to the cohort organization repository
  • Follow basic git flow
git remote add upstream https://github.com/COHORT_ORG/PROJECT_NAME

README

README should contain the following:

  • Name of project
  • Names and github handle for poeple on the team
  • Description of project
  • How to install the code locally
  • How to use the app

CONTRIBUTING.md

This file should outline your agreements on pull request workflow and code review workflow, including who merges pull requests, and code style.

Code Style

For the final project, you can choose your own code style and pull-request workflow.

For the group project, use

Pull Request Workflow

This workflow is required for the Group project.

Make sure to set your git user and email so you get credit for your work

  1. Create a branch named for the feature you are working on
  • Write Code
  • Commit your code and write a good commit message
  • Push your branch and changes to your Github repository
  • Create a Pull Request to your cohort organization

Code Review Workflow

  1. Another team mate reviews the pull request and writes code comments on Github
  2. You make the desired changes (using the Pull Request Workflow)
  3. Repeat #1-2 until teammate has no more changes that need to be made

Team should choose who merges Pull requests: code writer or the reviewer.

Getting changes

You’ll need to get changes that other pairs. Use the upstream remote that we created earlier.

git pull —rebase upstream master