Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ernail/students-git-demo

A repository for demonstrating the basics of Git
https://github.com/ernail/students-git-demo

Last synced: 8 days ago
JSON representation

A repository for demonstrating the basics of Git

Awesome Lists containing this project

README

        

# students-git-demo

A repository for demonstrating the basics of Git

## Terminology

- Git Repository: A space in which code maintained with Git exists (Locally or Remote)
- Commit: A bundle or package of changes to the code
- Commit History: The timeline of commits in a repository
- Remote: The state of a repository on a Git Server. Often called `origin`
- Local: The state of a repository on your machine
- Committing Changes: Creating commits locally
- Pushing Changes: Uploading the commits to the remote
- Branch: An isolated commit history. Multiple branches can exist in parallel. Default branch is `main`
- Staging: Define which changes should be in the next commit