Updated todo file

This commit is contained in:
2025-08-20 15:28:42 +05:30
parent 62f8325756
commit 7b3a23ca41

View File

@@ -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" 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. Its important for collaboration. 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. Its 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.