Typical Git workflow

From RidgeRun Developer Wiki
Revision as of 20:57, 11 September 2013 by Spalli (talk | contribs) (Created page with '== Introduction == Normal workflow is to develop and check in on a branch, then once everything is happy, merge the branch back into the master. == Typical Workflow are as fol...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

Normal workflow is to develop and check in on a branch, then once everything is happy, merge the branch back into the master.

Typical Workflow are as follows

1) get local copy of code
2) create a branch
3) edit files
4) add/commit changes to local machine
5) get back in sync with changes commited by others
6) push branch to remote git repository
7) merge local branch into local master
8) push local master to remote git repostiory


1) Get a local copy of the code