Abhinavdevcodex.hashnode.dev·Sep 8, 2024What is so special in git ??Introduction Tired of hearing about Git but have no clue what it is? Frustrated by tutorials throwing weird commands at you without explanation? https://media.giphy.com/media/W8zSq0vELdBhMAJdG3/giphy.gif?cid=790b7611axe5tek0kvoihdw0njra61mem2r84ivf2e...Discuss·2 likes·31 readsGit-VerseLVCS
Kajal Patilkajalpatil.hashnode.dev·Aug 12, 2024Mastering Git: A Beginner's Journey to Seamless Version ControlGit is an essential tool for managing and tracking changes in your code. This guide will introduce you to Git’s core concepts using a straightforward example: managing a personal project called "MyRecipeBook." We’ll walk through practical examples to...Discussbranching and merging
Pratyukt Writespratyukt.hashnode.dev·Aug 8, 2024Getting Started with Git: Configuration and Essential CommandsBy Pratyukt Mohapatra Introduction Welcome! If you're new to Git and want to learn how to set it up and use basic commands, you've come to the right place. This guide will walk you through the initial configuration and some essential commands to get ...Discuss·68 readsGit Version Control Git Configuration Git Basics Git Commands Developer Tools Software Development Coding Tips Git Workflow Version Control Systems
Gondi Bharadhwaj Reddybharadhwaj.hashnode.dev·Jul 22, 2024Getting Started with Git: A Beginner's TutorialGit, it is a powerful tool that becomes essential for version control and collaboration in the world of programming. But if you're new to Git, it might seem a bit confusing. Don't worry! This guide will break down the basics of Git, explains why it i...Discuss·1 likeGit
Aman Pratap Singhamanps12.hashnode.dev·Jul 13, 2024Beginner's Guide to Using Version Control SystemsVersion Control system What is Version? So when we release any application we release it with minimal applicationuses for our users and later keep on updating it with new features. Once we are complete with building one complete ‘milestone’. Now a Mi...Discussgitba
Charly Adolfuschakocloud.hashnode.dev·Jul 7, 2024Create a file on your local machine using GitBash and push it to a GitHub repository.Create a file on your local machine using GitBash and push it to a GitHub repository. To create a file from your local machine via GitBash and push it to a GitHub repository, follow these steps: Open GitBash: Launch GitBash on your local machine. U...DiscussGitHub
Mritunjay Kumarcodecomponents.hashnode.dev·May 20, 2024Working with submodules in githubMake sub repository inside main repository. Assume you have a project that contains two folders, server and client, to manage the repository called submodules. To set up Git submodules with separate repositories for the client and server, and a main...DiscussGitHub
Arturcode-with-arthur.hashnode.dev·May 16, 2024Essential Git Commands: A Comprehensive Guide for Efficient Version ControlGit is one of the most crucial tools you need to master in programming. Whether you're just starting out as a coder or you're a seasoned developer, understanding Git is essential for managing complex projects with ease and collaborating effectively w...DiscussGit
Sakeena Shaiksakeenashaik.hashnode.dev·Apr 28, 2024✨ Mastering Git Commands: From Basic to Advanced ✨Introduction: Git is a powerful version control system that's fundamental for modern software development. Whether you're new to Git or looking to advance your skills, mastering a range of Git commands is key to effective code management. This blog t...DiscussGitHub
Anurag Sharmaanuragsharma160.hashnode.dev·Mar 29, 2024Cheat sheet on git basicsNote - Repository / directory means folder. 1. git status - This command is used to check the present working state of the git. It shows whether git is tracking any folder or not. It also shows whether any changes need to be added and/or committed or...Discuss#Gitbasics