Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sangaryousmane/cicd-playground

Practicing CICD on AWS EC2 t2.micro instance
https://github.com/sangaryousmane/cicd-playground

aws aws-ec2 cicd docker git github-actions jenkins linux python

Last synced: about 1 month ago
JSON representation

Practicing CICD on AWS EC2 t2.micro instance

Awesome Lists containing this project

README

        

# LEARN CICD FROM ZERO TO HERO

> Know how to work with branches

## Feature branches:
1. A feature branch is a copy of the main codebase where an individual or team of software developers can work on a new feature until it is complete.
2. Create a new feature branch from the main branch git checkout -b feature

## Release branches:
A release branch in Git is a branch specifically created to prepare and stabilize a software release.
This branch is used to isolate the work related to finalizing and testing the code for a new version
before it is deployed to production.