https://github.com/rootkit-org/git-fundamentals
https://github.com/rootkit-org/git-fundamentals
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rootkit-org/git-fundamentals
- Owner: RootKit-Org
- License: gpl-3.0
- Created: 2022-01-01T22:41:39.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-09T03:40:50.000Z (about 4 years ago)
- Last Synced: 2025-01-14T18:07:37.605Z (12 months ago)
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Git Basics
### 1. Commands
* Version
* Init
* Clone
* Status
* Add
* Restore
* Reset
* Diff
* Commit
* Push
* Pull
* Branch
* Checkout
* Merge
* Remote
* RM
* Log
* Blame
* Stash
### 2. Concepts
* Merge Conflicts
* Rebasing
* Pull Request
* Forking
* Branching
* Commit Messages
* Tagging
* Deleting a git repository locally
* Cloning an existing repository
* Adding a remote source
* Utilizing .gitignore
* Stashing changes
* Adding and pushing changes to a remote repository
* Checking changes with git status and git diff
* Checking who made changes with git blame and git log
### 3. Tasks
* Check the version of git being used
* Create git repository
* Clone an open source repository
* Create a new branch
* Check the files added or changed
* Check the diff to view changes before committing
* Use .gitignore
* Merge into master with `--no-ff`
* Push Repository
* Open a Pull Request
* Check the log of commits on a branch