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

https://github.com/amolpalwe2002/learning-git


https://github.com/amolpalwe2002/learning-git

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

1. git --version or git -v
2. git status

# commit --> checkPoint
workingDir --> git add --> Staging area --> git commit --> Repo --> git push

3. git add. or git add
4. git log

# give order to your codeBase (ex. add file one)

5. git config --global user.name
6. git config --global user.email
7. git log --oneline
8. git branch
9. git checkout or git switch
10. git merge
11. git branch -d
12. git diff --staged
13. git stash
14. git stash pop
15. git rebase (only from sub-branches) ⚠️

16. git branch -M main
17. git remote -v
18. git remote add
19. git push -u origin main
20. git fetch
21. git pull