Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 2.2 KB

concepts.md

File metadata and controls

36 lines (28 loc) · 2.2 KB

Pull Requests

Commit your branch
  1. (my-feature) git add .
  2. (my-feature) git commit -m 'add this feature'
  3. (my-feature) git status
Check out master and pull the latest version
  1. (my-feature) git checkout master
  2. (master) git pull origin master
Check out your branch again and merge
  1. (master) git checkout my-feature
  2. (my-feature) git merge master
If there's a conflict
  1. open editor and resolve conflicts
  2. git add .
  3. git commit --no-edit # commit using the default commit message

Git Workflow

Rebase

Squash