Hacker News new | ask | show | jobs
by stoerfall 2142 days ago
I strongly recommend getting your Git / SCM workflow right before implementing Pipelines :-) Of using Git, you might want to make sure that everybody works according to a defined work flow such as Gitflow.

Pipelines can only work if everybody strictly sticks to the rules.

2 comments

Also have a look at GitHub flow: https://guides.github.com/introduction/flow/ and GitLab flow: https://docs.gitlab.com/ee/topics/gitlab_flow.html which are in my experience better suited for CD than GitFlow. YMMV.
thank you!