janahvi tripathijanahvitripathi.hashnode.dev·Jan 13, 2024Git as a tool !Hello Peers! Today let's talk about git and why the need of it be! Git basically is a form of code management , version control system which allows us to collaborate with different developers and codes. With Git, we can keep a track of all older vers...Git
AVINASH SARJERAO POWARavinashpowar.hashnode.dev·Aug 4, 2023Day11 of #90daysofdevops | Git stashing & resolving conflicts (Advancing with Git)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...git stash
Redge Shepherdtcltkscripts.com·Mar 11, 2023Add a safe.directory to your repository!I recently added a new 20GB external hard drive to my system. I added a code directory that contains some of my Tcl/Tk files. After creating and attempting to add a file to the repository, I received the following error: F:\Code\TclTk\ReadKey>git add...128 readsGit
Sapta Thirta Choudhurytechblogofbabai.hashnode.dev·Feb 21, 2023How to Configure Git: A Step-by-Step GuideGit is a powerful tool for managing software development projects. However, before you can start using Git, you need to configure it. In this guide, we'll walk you through the process of configuring Git, step-by-step. Step 1: Install Git Before you c...Git config
Arunvel Sriramarunvelsriram.dev·Oct 24, 2019Conditionals in Git ConfigWe can use conditionals in Git config. In my case I have separate configs for Personal and Work projects and its decided based on directory. An example `.gitconfig` file: [user] name = Arunvel Sriram email = my-personal-email@gmail.com # wor...1 likeTIL - Today I LearnedGit