https://github.com/aa-nadim/version-control-system
https://github.com/aa-nadim/version-control-system
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aa-nadim/version-control-system
- Owner: aa-nadim
- Created: 2025-03-16T06:47:48.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-16T07:29:48.000Z (2 months ago)
- Last Synced: 2025-03-16T08:25:20.114Z (2 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Version Control System (VCS)
### Questions
1. switch vs checkout
2. pull request
3. fetch vs pull
4. pull vs rebase
5. checkout vs switch
6. git reset
7. git reflog
8. git cherry-pick
9. git stash** Merge Conflict**
** github tool**
```
git add .git reset
alies.co
vim [it is a cli editor]
git remote
git remote -v
origin https://github.com/aa-nadim/version-control-system.git (fetch)
origin https://github.com/aa-nadim/version-control-system.git (push)git remote remove origin
git remote add origin [email protected]:aa-nadim/version-control-system.git
git switch -c main
git reset HEAD~n
```