Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sangaryousmane/cicd-playground
- Owner: sangaryousmane
- Created: 2024-01-27T10:42:40.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-27T14:49:33.000Z (11 months ago)
- Last Synced: 2024-01-28T12:39:46.571Z (11 months ago)
- Topics: aws, aws-ec2, cicd, docker, git, github-actions, jenkins, linux, python
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.