https://github.com/ernail/students-git-demo
A repository for demonstrating the basics of Git
https://github.com/ernail/students-git-demo
Last synced: about 2 months 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 (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-11T18:29:29.000Z (6 months ago)
- Last Synced: 2025-02-05T12:43:41.261Z (4 months ago)
- Language: Go
- Size: 3.91 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