Files
git-practice-Renejit/todo.txt
2025-08-20 16:55:16 +05:30

16 lines
786 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Explanation of Git Comments
git config --global user.name "Renejit"
Explanation: This command sets up your name for Git. Git will use this name for all commits you make, so your contributions can be tracked properly.
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.
git init
Explanation: Initializes a new Git repository in the current directory. This turns your project folder into a version-controlled repository.
git status
Explanation: Shows the status of the working directory. It tells you which files are modified, staged, or untracked, and if there are changes to commit.