Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 17, 2024Day 14 Task: Create a Linux & Git-GitHub Cheat Sheet🐧 Linux Cheat Sheet 🐧 CommandDescriptionExample lsList files and directories.ls -l cd [directory]Change current directory.cd /home/user/ mkdir [directory]Create a new directory.mkdir project touch [file]Create an empty file.touch file.txt...82 readsDevops
Ankit Kundalaankitkundala.hashnode.dev·Jan 25, 2024✨Ultimate Git/Github CheatSheet For Devops✨Hello ! Hope your'e doing good this blog includes pretty short and precise explanation of the commands used in Git/GitHub s in day to day scenario. Set Global Username & email for Git git config --global user.name "<your.name>" git config --global us...31 reads✨Ultimate CheatSheet for DevOps✨Git
Aakanksha Deshmukhaakanksha1415.hashnode.dev·Nov 12, 2023Linux and Git &Github Commands Cheatsheet🐧File and Directory Operation ls: List directory contentscd: Change directorypwd: Print working directorymkdir: Make a directorycp: Copy files or directoriesmv: Move or rename files or directoriesrm: Remove files or directories File Manipulation cat: ...linuxcheatsheet
Suraj bariklinuxenthusiast.hashnode.dev·Aug 10, 2023Git & GitHub Cheat SheetIn this Git & Github line cheat sheet, you will learn: Git configuration Starting A Project Day-To-Day Work Git branching model Review your work Tagging known commits Reverting changes Synchronizing repositories Git configuration Configure ...gitcheatsheet
mehboob shaikhdevopsgyanwithmehboob.hashnode.dev·Jun 28, 2023Day 12 GitHub Cheat SheetInstall GitHub Desktop desktop.github.com Git for All Platforms git-scm.com Configuring Git $ git config --global user.name "[name]"Sets the name you want to be attached to your commit transactions.$ git config --global user.email "[email address]"S...2 likesGitHub
Ayush Nighoskarayushn.hashnode.dev·Sep 6, 2022Github CheatsheetOverview This cheat sheet will help any new user to understand the basic git commands.You'll discover what git is and how to utilise it What is GIT? GIT is a distributed version control system that is free and open-source. It supports non-linear dev...2 likes·80 readsLearn Code Online