Git & Git Hub Glossary (Terminologies)
GitHub is a web-based platform that provides hosting for version control and collaboration. It allows multiple people to work together on projects from anywhere in the world. Here are some common terminologies associated with GitHub: - **@mention**: To notify a person on GitHub by using `@` before their username¹. - **Access token**: A token used in place of a password when performing Git operations over HTTPS with Git on the command line or the API¹. - **Branch**: A parallel version of a repository that does not affect the primary or main branch, allowing you to work freely without disrupting the "live" version¹. - **Commit**: A record of changes made to a repository. A commit includes a commit message that describes what changes were made¹. - **Fork**: A personal copy of another user's repository that's independent of the original repository¹. - **Issue**: A way to track enhancements, tasks, or ...