User Tools

Site Tools


git_glossary

Git Glossary

Return to Git, GitHub, GitHub Glossary, GitOps Glossary, Terraform Glossary, Ansible Glossary, Docker Glossary, Podman Glossary, Containerization Glossary, Kubernetes Glossary, OpenShift Glossary, Rancher Glossary, DevOps Glossary, DevSecOps Glossary, Virtualization Glossary, Cloud Native Glossary, Microservices Glossary, Cloud Computing Glossary, AWS Glossary, Azure Glossary, GCP Glossary, IBM Cloud Glossary, Oracle Cloud Glossary


Creating a Git glossary of the top 40 concepts, prioritized by their commonality of use, involves explaining Git's core functionalities, commands, and workflows that are essential for version control. Git is a distributed version control system that allows multiple developers to work on a project simultaneously, without losing track of their changes. This glossary will cover foundational Git concepts and commands that are frequently used in software development projects.

Given the detail required for 40 concepts, I'll provide an abbreviated list that captures some of the most critical Git concepts in a MediaWiki format. This should serve as a helpful starting point.

Simple Git Glossary

This glossary outlines the most commonly used Git concepts, providing a foundation for understanding and utilizing Git for version control in software development projects.

Git

A distributed version control system used to track changes in source code during software development. It allows multiple developers to work on the same project simultaneously.

Repository (Repo)

A digital directory or storage space where your project lives. It can be local to a folder on your computer, or it can be a storage space on GitHub or another online host.

Clone

The act of copying an existing Git repository from another location to your local machine. ; Example <source> git clone https://github.com/exampleuser/example-repo.git </source>

Branch

A lightweight movable pointer to one of these commits. The default branch name in Git is “master”. ; Example <source> git branch new-feature </source>

Commit

An individual change to a file (or set of files). It's like when you save a file, except with Git, every time you save it creates a unique ID. ; Example <source> git commit -m “Add a new feature” </source>

Merge

Takes the changes from one branch (in the same repository or from a fork), and applies them into another. This often happens in a pull request. ; Example <source> git merge new-feature </source>

Pull Request

A method of submitting contributions to an open development project. It is initiated by the developer responsible for the project, or by using a GitHub feature.

Fetch

Adds changes from the remote repository to your local working branch without committing them. ; Example <source> git fetch origin </source>

Pull

Fetches and merges changes on the remote server to your working directory. ; Example <source> git pull origin master </source>

Push

Sends committed changes of local branch to a remote repository. ; Example <source> git push origin master </source>

Merge Conflict

Occurs when Git is unable to automatically resolve differences in code between two commits. ; Example To resolve a merge conflict, edit the files to fix the conflicting changes and then commit the result.

Stash

Temporarily shelves (or stashes) changes so you can work on a different branch. ; Example <source> git stash </source>

Rebase

Reapply commits on top of another base tip. It's used to apply your changes onto another branch. ; Example <source> git rebase master </source>

Tag

Marks specific points in history as being important. Typically used for marking release points (v1.0, for instance). ; Example <source> git tag v1.0 </source>

Checkout

Used to switch between branches or inspect old versions. ; Example <source> git checkout new-feature </source>

Diff

Shows the differences between two commits, or between committed and uncommitted changes. ; Example <source> git diff HEAD </source>

Log

Displays committed snapshots. It lets you list the project history. ; Example <source> git log </source>

Remote

A common repository that all team members use to exchange their changes. ; Example <source> git remote add origin https://github.com/exampleuser/example-repo.git </source>

.gitignore

A text file that tells Git which files or folders to ignore in a project. ; Example To ignore all “.txt” files, add “

  • .txt” to the .gitignore file.

This glossary introduces some of the core concepts and commands used in Git, offering a foundational understanding for managing and contributing to software projects with version control. For a comprehensive exploration of all 40 concepts, extensive documentation and resources on Git are recommended.

This overview provides a snapshot of essential Git concepts and workflows. Expanding your knowledge to include all 40 concepts would involve deeper exploration into Git's documentation, tutorials, and community resources, where you can find detailed explanations, examples, and best practices for using Git effectively in your projects.


Git: Git Fundamentals, Git Inventor - Git Designer: Linus Torvalds, git commands, Git Username, git commit Email Address, Authenticating with GitHub from Git, GitHub, Version control, GitOps, Awesome Git. (navbar_git - see also navbar_github)

GitHub: GitOps, GitHub Copilot (Learn AI-Assisted Python Programming), GitHub for Major Software and Languages, GitHub Fundamentals, GitHub Inventor: GitHub and Git, GitHub Stars: GitHub Organization Ranking, GitHub Stars Ranking, GitHub Big Tech, Cloud Monk's favorite GitHub repos, gh plugin, git help, Version control, GitHub topics, Git topics, Git, GitHub repos, GitHub bibliography, Manning Git-GitHub Series, GitHub Actions, GitHub CodeSpaces, GitHub CLI, GitHub Free, GitHub Pro, GitHub Team, GitHub Enterprise, GitHub security (GitHub MFA - GitHub Passkeys) - GitHub Secrets - Authenticating with GitHub from Git (gh auth login), GLFS, GitHub Packages, GitHub alternative source code repos (GitHub - GitLab - AWS CodeCommit - Google Cloud Source Repositories - Bitbucket), Install Git, Git for Windows (choco search github, brew search github), Git for Linux, Git for macOS, GitHub glossary, Git glossary. (navbar_github - see also navbar_git, navbar_gitops, navbar_iac)

Fair Use Sources


Cloud Monk is Retired (for now). Buddha with you. © 2005 - 2024 Losang Jinpa or Fair Use. Disclaimers

SYI LU SENG E MU CHYWE YE. NAN. WEI LA YE. WEI LA YE. SA WA HE.


git_glossary.txt · Last modified: 2024/03/14 18:40 by 127.0.0.1