The Anubhav portal was launched in March 2015 at the behest of the Hon'ble Prime Minister for retiring government officials to leave a record of their experiences while in Govt service .
A commit in GitHub is a record of changes made to one or more files in a Git repository. It acts like a
"save point" in the history of a project, capturing a snapshot of what the files looked like at that moment.
Each commit includes:
The changes made (additions, deletions, modifications).
A commit message describing the purpose of the change.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
What is a Commit in GitHub?
A commit in GitHub is a record of changes made to one or more files in a Git repository. It acts like a "save point" in the history of a project, capturing a snapshot of what the files looked like at that moment.
Each commit includes:
Why is a Commit Necessary in Projects?
Commits are essential for the following reasons:
1. Version Control
2. Collaboration
3. Documentation
4. Backup
5. Branching and Merging
Example:
You're building a website:
"Add homepage layout""Fix typo in header""Add contact form functionality"