Day 12 : Linux cheat sheet & Git cheat sheet
Linux cheat sheet Git Cheat Sheet:
Search for a command to run...
Articles tagged with #90daysofdevops-chanllenge
Linux cheat sheet Git Cheat Sheet:
Day 11 Task: Advance Git & GitHub for DevOps Engineers: Part-2 Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a...

Git Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into another branch using a pull request. ...

What is Git and why is it important? Git stands for ' Global Information Tracker' its centralized version control systems. Git can be installed on your remote server and local server, we can maintain our central repository on remote server while othe...

What is Git? Git is an version control systems, which allows us to track the changes in files and coordinate works on those files around multiple people. Commonly its being used for software development process to track the changes in releases. What ...

What is package manager in Linux? Package manager is an tools in linux, which automates the process of installing, upgrading, configuring and removing the packages in operating systems. there are different types of it. What is a package in Linux? A p...
