For premium DevOps and AWS Courses: https://imojo.in/2cox7em
- AWS with the project
- DevOps Real-Time
- DevOps with the project
- AWS Real-Time
- Linux Admin
Important GIT Commands
- t pull
- git branch development
- git checkout development
- git checkout -d development
- add new files
- git add .
- git commit -m "added new changes to new branch"
- git push origin development
- git checkout master
- git merge development
- git push
- git checkout -b hotfix
- vi hostfix
- git status
- git add hostfix
- git commit -m "added hotfix"
- git push origin hotfix
- git checkout master
- git branch
- git branch -v
- git branch --merged
- git branch --no-merged
- git branch -d hotfix
- git merge hotfix
- git push origin master
- git branch -d hotfix
- git push origin --delete hotfix
- git tag
- git tag -v
- git tag -a v1.4 -m "my version 1.4"
- git show v1.4
- git push origin v1.4
- git checkout 2.0.0
- git checkout -b version2 v2.0.0
- git checkout destination_branch
- git merge tag_name