Ahmed Razaahmedrazadev.hashnode.dev·Nov 14, 2024Git: Essential Commands and Creating an Emergency Commit AliasGit is a powerful, distributed version control system widely used by developers to track changes in their codebase, collaborate with others, and manage projects efficiently. Understanding how to use Git effectively can greatly enhance your developmen...DiscussGit
Kanav Gathe90-days-of-devops-kanav.hashnode.dev·Nov 6, 2024🐧 Linux & Git-GitHub Command Cheatsheet📂 Linux File System Navigation Basic Navigation CommandDescriptionExample pwdPrint working directorypwd lsList files and directoriesls -la cdChange directorycd /home/user mkdirCreate directorymkdir new_folder rmdirRemove empty directoryrm...Discuss·5 likesGit Commands
Munilakshmi G J100daysdevops.hashnode.dev·Nov 4, 2024Day 10 of 100 Days: Git and Linux Commands Cheat SheetWelcome to your power-packed guide on Git and Linux commands! Think of Git as your digital logbook, capturing every update you make, while Linux is your command-line toolkit, ready to handle everything from organization to quick navigation. 🛠️ Git C...DiscussGitHub
Prabakaranprabakaran.hashnode.dev·Oct 8, 2024A Beginner's Guide to Git and GitHubWhat is Git? Git is a distributed version control system (VCS) that helps developers manage changes to their codebase over time. It allows multiple people to collaborate on a project by tracking modifications, managing different versions of files, an...DiscussLearn git
telagorla saiyadavawsdevopsbysai.hashnode.dev·Sep 26, 2024few more Linux commands and Git CommandsTable of contents Linux Commands Cheat-Sheet File Directory Management File Viewing & Editing Permissions & Ownership System Monitoring & Management Git Commands Cheat-Sheet Basic Commands Branching & Merging Stashing Cherry-Picking Confl...DiscussLinux CommandsLinux
mikcomkco.hashnode.dev·Sep 17, 2024feat: git commands and stuffessential commandsdescription git checkout mainupdate local main branch from remote#1 git fetch origin mainupdate local main branch from remote#2 git rebase origin/mainupdate local main branch from remote#2 (this also works for develop branch j...DiscussGit
Arvind Parekharvind-parekh.hashnode.dev·Sep 10, 2024Yet another blog post on the top 5 Git commandsWelcome Hellew hellew everyone! Welcome to yet another blog post on "The top 5 Git commands"! You probably must be wondering how this one would be any different. It won't be. Well, a little bit I guess. I'll be telling you the best resource to learn ...DiscussGit
ganesh mondalganeshcmondal.hashnode.dev·Sep 9, 2024Managing and Resolving Git Conflicts with Ease 🚧Git is a powerful tool for version control, but when multiple developers are working on the same project, conflicts can happen. Don’t worry, though! Git conflicts are a normal part of the development process, and with the right approach, they can be ...DiscussAdvancd git
Rohith Kolarohith-kola.hashnode.dev·Sep 7, 2024What is GitWe’ve all been there: you update a perfectly working codebase to add features or optimize it, and suddenly, things start breaking. You try to fix it, but eventually, you just want to go back to that stage when everything was working perfectly. But HO...DiscussGit
ganesh mondalganeshcmondal.hashnode.dev·Sep 7, 2024Understanding Git Branching Strategies 🚀When working on software projects, especially with a team, organizing your work is crucial. That’s where Git branching strategies come in! By following a branching strategy, you can keep your work neat, avoid conflicts and ensure a smooth development...DiscussGitHub