Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ernail/students-git-demo
- Owner: erNail
- Created: 2024-12-11T15:51:02.000Z (13 days ago)
- Default Branch: main
- Last Pushed: 2024-12-11T18:11:55.000Z (13 days ago)
- Last Synced: 2024-12-11T18:28:33.995Z (13 days ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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