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

https://github.com/aa-nadim/version-control-system


https://github.com/aa-nadim/version-control-system

Last synced: 2 months ago
JSON representation

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

```