#devops
Read more stories on Hashnode
Articles with this tag
What is Terraform and how can it help you manage infrastructure as code? Terraform is an IAAC ( Infrastructure As A Code ). Terraform is a tool for...
List: A list is an ordered collection of items. Elements in a list are enclosed in square brackets [ ]. Lists are mutable, meaning you can add,...
Install Python in your respective OS, and check the version In DevOps python is used to automate manual things just like shell scripting. To install...
Create a new branch and make some changes to it To create a new branch and switch to new branch, sudo git branch Dev sudo git checkout Dev Use...
Add a text file called version01.txt inside the Devops/Git/ with “This is the first feature of our application” written inside. This should be in a...
Set your user name and email address, which will be associated with your commits. To set a username, sudo git config --global user.name "Neha" To set...