Skip to content

Instantly share code, notes, and snippets.

@TheFluo
Created August 15, 2020 18:43
Show Gist options
  • Save TheFluo/886244ea7b355c5c8c83de28725fb56b to your computer and use it in GitHub Desktop.
Save TheFluo/886244ea7b355c5c8c83de28725fb56b to your computer and use it in GitHub Desktop.
How to init a repository

roadmap.md

Init repository

Commit Msg

Super User

Create branch

  • master
  • release
  • develop
  • publish

Tag V0

@startuml component
skinparam backgroundColor #EEEBDC
actor ReleaseManager

database terraform
node master
node release
node develop
node publish

ReleaseManager -> terraform
terraform --> master
master -> release
release -> develop
develop -> publish

  

@enduml

Publish

  • result of the createEnv Python should be in html with all the file

    (pdf, html, etc, ...)

# roadmap.md
### Init repository
[Commit Msg](http://stackabuse.com)
[Super User](http://whoisthesuperiser.com)
### Create branch
- master
- release
- develop
- publish
### Tag V0
```plantuml
@startuml component
skinparam backgroundColor #EEEBDC
actor ReleaseManager
database terraform
node master
node release
node develop
node publish
ReleaseManager -> terraform
terraform --> master
master -> release
release -> develop
develop -> publish
@enduml
```
# Publish
- result of the createEnv Python should be in html with all the file
(pdf, html, etc, ...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment