#90daysofdevops
Read more stories on Hashnode
Articles with this tag
Managing the user accounts on a Linux system is a crucial task for system administrators. It involves creating, deleting, resetting passwords and...
LINUX CHEAT SHEET Navigation: ls: List files and directories in a directory ls -l: Displays detailed information about files and directories (long...
Git Stash: git stash is a command that allows you to temporarily save changes that you don't want to commit immediately. It's particularly useful when...
Git Branching: Git branching enables teams to collaborate on a project more efficiently, as it allows for parallel development and the ability to...
Introduction to Git 🚀 A Git is a game-changer in version control. Git isn't just for software development; it's a versatile tool for tracking changes...
🤖How to install docker on Ubuntu Update your system sudo apt-get update -y Install docker sudo apt-get install docker.io -y Start Docker sudo...