Document

SUBSCRIBE TO GET FULL ACCESS TO THE E-BOOKS FOR FREE 🎁SUBSCRIBE NOW

Professional Dropdown with Icon

SUBSCRIBE NOW TO GET FREE ACCESS TO EBOOKS

Category Uncategorized

Azure DevOps- Certification

Azure DevOps- Certification Azure DevOps – Certification  Configure processes and communications (10—15%) Configure activity traceability and flow of work Plan and implement a structure for the flow of work and feedback cycles Identify appropriate metrics related to the flow of…

Git- Assignment

Git- Assignment Git and GitHub Assignment   ABC is a software company and you have been hired as Sr DevOps Engineer and you have to implement DevOps Lifecycle for a certain number of projects. Below tasks are assigned to you…

Git – tags

Git – tags  Tags are used for defining the version or release of your code. Prerequisites:- Local git repo should be created and have some files in it. Branch:- working on the main branch Step1:- Switch to the main branch…

git- work tree

git- work tree  A Git worktree is a linked copy of your Git repository, allowing you to have multiple branches checked out at a time. A worktree has a separate path from your main working copy, but it can be…

git stash

git stash git stash Stashing takes the dirty state of your working directory — that is, your modified tracked files and staged changes — and saves it on a stack of unfinished changes that you can reapply at any time (even on a different…

git- cherry-pick

git- cherry-pick git cherry-pick is a powerful command that enables arbitrary Git commits to be picked by reference and appended to the current working HEAD. Cherry-picking is the act of picking a commit from a branch and applying it to another.  Example …

Git – Remote Branches

Git – Create Remote branches  Once you are having different branches on the local Repository then you can push the code changes to respective branches on Github so that developers can download/upload the code into their respective branches. Step 1:…

Git – Branches

Git – Branches  Git branches    Virtual directories get created for each branch. main/master branch is considered as the branch which has the latest and greatest code. We create branches so each developer can work on its own branch and…