Anusha Nayakanushanayak.hashnode.dev·Dec 1, 2023Day 8 Task: Basic Git & GitHub for DevOps Engineers.📍What is Git? Git 🐙: The Friendly Code Octopus Git is like a magical octopus that helps teams of people work on the same project without stepping on each other's toes. Imagine you're working on a cool project with friends, and everyone's making cha...Discuss·12 likesGitHub
Pandey Jitechsangam.hashnode.dev·Nov 28, 2023Advance Git & GitHub for DevOps EngineersNamaste DevOps Enthusiasts! Aaj hum dive karenge Git ke kuch advanced commands mein, jo aapke development process ko aur bhi efficient banayenge. Chaliye shuru karte hain! 1. Git Branching - Development Ko Isolate Karo Git Branching ka istemal karke ...DiscussGitHub
Klesta Lklescode.hashnode.dev·Nov 27, 2023Git Basics: Git Commands and How to Use ThemIf you’re a beginner in the world of development and you’re ready to begin using the terminal, these are some basic git commands that can get you started. Git is a powerful tool for version control - it helps you keep track of changes in your code an...Discuss#Gitbasics
Bran Livinstonbranlivinston.hashnode.dev·Nov 23, 2023What is GitHub?Overview GitHub is a hosting platform for Git repositories, providing a cloud-based solution for managing and collaborating on code. Key features include: Cloud Hosting: GitHub allows users to store their Git repositories in the cloud, providing acc...DiscussGitHub
Farhaan Bukhshjournal.farhaan.me·Nov 22, 2023git fixup -- your workflow"Woah!" this was my reaction when I discovered the --fixup flag for git commit command. It reduces the time spent on working on features/fixes by: Avoiding temporary commit messages. Eliminating the time taken to remove the temporary commit message...Discuss·4 likes·181 readsGit
Raqeeb Ahmed Khanraqeebtech.hashnode.dev·Nov 22, 2023Advance 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 different branch to work on something else, but you don't want...Discuss·1 like·39 readsDevops
Pandey Jitechsangam.hashnode.dev·Nov 21, 2023Unraveling the World of Git and GitHub: A Journey into Version ControlNamaste bloggers! Aaj chaliye Git, GitHub, aur version control ki or badhte hain. Understanding the Basics Git Kya Hai? Git ek distributed version control system hai jo multiple contributors ko ek project par saath mein kaam karne ki facility deta ha...DiscussCVS vs DVCS
Muhammad Younuscodingmadesimplified.hashnode.dev·Nov 21, 2023Everyday Git Commands: A Practical GuideWhen I first started writing code, I was still a newbie and didn’t know much about version control systems or collaborative development tools. I used to transfer code between computers via USB drives, which was a tedious and error-prone process. This...DiscussGitHub
raju ghoraicoderj001.hashnode.dev·Nov 21, 2023Git Tools - CheckoutWelcome to our comprehensive guide on git checkout, a command in Git that's as versatile as a Swiss Army knife in the hands of a skilled developer. This guide is designed to elevate your Git game, making you a wizard in managing branches, undoing cha...Discuss·3 likes·42 readsGit ToolsGit
Sidharth Shuklasidharthhhh.hashnode.dev·Nov 15, 2023Day12:- Important Git commandsInitialize a Repository git init Clone a Repository git clone <repository_url> Configure User Information git config --global user.name "Your Name" git config --global user.email "your.email@example.com" Add Changes to Staging Area git add <filena...Discuss·33 readsGitHub