#90daysofdevops
Read more stories on Hashnode
Articles with this tag
Python Installation sudo apt-get update sudo apt-get install python3.6 Check the version python3 --version Why their is need for Python in DevOps?...
Initialize a Repository git init Clone a Repository git clone <repository_url> Configure User Information git config --global user.name "Your...
Git LFS Git Large File Storage (LFS) is an extension for Git that allows you to track and manage large files efficiently. It does this by storing the...
Git branching Git branching is a powerful feature of Git that allows you to create parallel lines of development for your project. This is useful for...
Create a remote repo.Part 1 Click on create new repo. Give name to your remote repo. and click on Create repository. You will get this kind of...
What are Git and GitHub? Git is a distributed version control system (DVCS) that tracks changes in source code during software development. GitHub is...