Aditya Rajadistrim.hashnode.dev·Jun 2, 2024What Are Git Orphan Branches and How to Use ThemWhat is Git? Git is a free and open-source distributed version control system (DVCS) that is widely used in software development. It helps track changes, collaborate with others, and manage branches effectively. This brief introduction only touches o...97 readsorphan branches
M'mah Zombommahzombo.hashnode.dev·Feb 27, 2024How To Push To a Branch with Simply "git push"Many times in your projects you have to create Git branches to keep your workflow and code in order and to safe guard your code from yourself. Let's say you cloned a repository and locally created a branch named development in it. When you make chang...6 likes·29 readsHow ToGit
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 24, 2024Lecture # 10 - Concept of BranchesBranches: In Git, branches are essentially pointers to a specific commit in the repository's history. They allow you to work on different parts of your project simultaneously without interfering with each other. View Branches: To view the branches gi...Devops
Kusuma Vkusumav.hashnode.dev·Dec 10, 2023Git & Github - 3Git Branches to create a branch git branch branchname to change one branch t o another git checkout branchname # Without commit in branch we should not check out to other branch, if not the information will come to other branch also to delete branc...Git
Hardik Chotaliyahardikchotaliya.hashnode.dev·Nov 10, 2023🌿 The Ultimate Guide to Naming Git Branches: Best Practices and Tips 🔖🚀 Introduction When working with Git for version control in automation testing projects, it's essential to establish clear and consistent naming conventions for branches. Well-named branches can improve collaboration, provide context, and streamline...560 reads2Articles1Week
JIBRAN SIDDIKIjibran786.hashnode.dev·Mar 19, 2023Day 10 Task : Advance Git & GitHub for DevOps Engineer .1 .) Git Branching Ans -- Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into another branch using a p...Git branches