Taming local git branches

Taming local git branches
On rare occasions, I write a blog post that's not about MiniScript. Today is one of those! It addresses a problem that I've often faced at work: keeping track of all my local git branches. T...
0 Read More

USEFUL GIT COMMANDS

USEFUL GIT COMMANDS
✅1. git diffDescription: Shows the differences between files in your working directory and the index (staging area).Command: git diffScreenshot: ✅2. git logDescription: Displays the commit history...
0 Read More

Git | Basic

Here’s a quick list of commands to know if you’re starting with Git. ⌨ Set email ➡️ git config global user.email ⌨ Set name ➡️ git config global user.name ⌨ Setup your own local repo...
0 Read More