https://github.com/amolpalwe2002/learning-git
https://github.com/amolpalwe2002/learning-git
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amolpalwe2002/learning-git
- Owner: amolpalwe2002
- Created: 2024-05-02T18:32:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-12T06:13:04.000Z (over 1 year ago)
- Last Synced: 2025-01-03T08:30:28.931Z (12 months ago)
- Language: HTML
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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