diff --git a/todo.txt b/todo.txt index f0d6780..662ad92 100644 --- a/todo.txt +++ b/todo.txt @@ -5,3 +5,7 @@ Explanation: This command sets up your name for Git. Git will use this name for git config --global user.email "renejit.vedamoni@comorin.co" Explanation: Similar to the previous command, this sets up your email address for Git. This email is used to associate your commits with your identity. It’s important for collaboration. + +git init +Explanation: Initializes a new Git repository in the current directory. This turns your project folder into a version-controlled repository. +