Skip to content

Instantly share code, notes, and snippets.

@codeofnode
Last active May 30, 2018 14:09
Show Gist options
  • Save codeofnode/233a4c09078649a905359707bbf8c3b8 to your computer and use it in GitHub Desktop.
Save codeofnode/233a4c09078649a905359707bbf8c3b8 to your computer and use it in GitHub Desktop.
How to setup workspace tree in git repo
|-- master (latest version passed by QA)
|   |-- dev (latest version passed by developers, complete and working)
|
|-- v0 (version 0.x.x)
|   |-- i1 (addressing issue/task 1)
|   |-- i2 (addressing issue/task 2)
|   |-- i5 (addressing issue/task 5)
|   |-- new (fork from v0)
|
|-- v1 (version 1.x.x)
|   |-- i3 (addressing issue/task 3)
|   |-- i4
|   |-- i6
|   |-- new (fork from v1)
|
|-- v2 (version 2.x.x)
|   |-- i7 (addressing issue/task 7)
|   |-- i8
|   |-- i9
|   |-- new (fork from v2)
|    
|-- new-version (fork from master)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment