Git

Ultimate Git Command Guide 2024

Important commands Command Description git config --global user.name Sets the name that will be attached to your commits and tags globally. git config --global user.email Sets the email address that will be attached to your commits and tags globally. git init Initializes a new Git repository in the current directory.[...]

By |February 27, 2024|Tags: , , , |

How to use git stash

When working with Git, you can use the "git stash" feature to save your changes temporarily without committing them. This is helpful when you need to switch to another branch, fix a bug, or perform other tasks. Here's the sequence to follow when using "git stash": Save your changes to[...]

By |August 7, 2023|Tags: , , |
Go to Top