Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Nov 29, 2024Master Git Rebase: A Beginner’s Guide to Clean Version Control HistoryWhat is Git Rebase? Rebasing in Git rewrites commit history. It does not merge two branches as merging does. Merging creates a merge commit. Rebasing moves the commits from one branch to the top of another branch’s HEAD. How Does Git Rebase Work? Dur...DiscussKubernetes Basics: A Beginner’s GuideGit
Alexander PanovforRoyalZSoftwareroyalzsoftware.de·Oct 21, 2024Mastering Git Rebase Interactive: Squashing Commits for a Clean HistoryIn the world of Git version control, having a clean, well-structured commit history is essential for both individual developers and collaborative teams. One of the most powerful ways to refine your commit history is through the git rebase -i (interac...DiscussGit
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...Discuss·82 readsDevops
Sourav Sahadev-sourav.hashnode.dev·Sep 1, 2024Git for Beginners: A Friendly Guide to Version ControlAre you new to programming and keep hearing about this thing called Git? Don't worry! This guide will walk you through the basics of Git, a powerful tool that helps you manage your code and collaborate with others. Let's dive in! What is Git? Git is ...Discussversion controll
Vibhuti Jainvibhutijain.hashnode.dev·Aug 28, 2024Day 13 Task: Advance Git & GitHub for DevOps EngineersGit Branching Branches are a core concept in Git that allow you to isolate development work without affecting other parts of your repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into an...Discuss#gitchallenge
Anasanasmansuri.hashnode.dev·Aug 14, 2024Merge vs Rebase in Git : Which to Choose and WhenHello! I'm Anas , a DevOps and Cloud enthusiast with a passion for building scalable, efficient, and secure infrastructure. With a strong focus on automation, containerization, and orchestration, In this blog I'll be diving into the git branching in ...DiscussGit
Alan Linsalanlins.hashnode.dev·Aug 6, 2024Git Rebasing: Must-Know Commands SimplifiedUsing rebasing can make development easier. However, it gets complex when the team decides to keep a single commit per pull request, rebase branches with master, check out branches from remote, and fix conflicts. This article will list a few of the m...DiscussGitHub
Dhruv Rajvanshidhruv-blogs.hashnode.dev·Aug 5, 2024Day-6 | Git & Github AdvancedWelcome to Day 6 of my DevOps learning journey! Today, we're exploring advanced Git and GitHub concepts that are essential for effective version control and collaboration. These skills are crucial for developers and teams to manage codebases, streaml...DiscussDevops
Rohith Krohithkattamuri.hashnode.dev·Jul 24, 2024Gotcha, Git!We've all pulled our hairs out at some point due to Git's confusing intricacies. One such scenario could be when you see the dreaded message - "Your branch and X branch have diverged ....". You would neither be able to pull nor push and ARGH it's fru...Discuss·27 readsGitHub
Hamza Kachachihamzakachachi.hashnode.dev·Jul 22, 2024Unlocking Advanced Git Skills for Full Stack DevelopmentGit is an essential tool in the modern full-stack developer's toolkit. While basic commands like git add, git commit, and git push are commonly used, there are advanced features of Git that can significantly enhance workflow efficiency. In this blog ...Discuss·1 likeAdvanced Git Techniques