#trainwithshubham
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...
Navigation: ls: List files and directories in a directory cd: Change the current working directory pwd: Display the current working...
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...
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...