MMT Extranet Git Commands
This extension combines git commands to avoid mistakes in handling git.

Commands
The commands are described below:
MMT: Git Create Commit and Push
git add .
git commit -m your message
git push origin HEAD:refs/for/your current branch
MMT: Git Amend Commit And Push
git add .
git commit --amend
git push origin HEAD:refs/for/your current branch
MMT: Git Create MR With Integration And Push
git checkout integartion
git reset --hard
git pull --rebase
git merge origin/your current branch --no-ff --no-commit
git commit
git push origin HEAD:refs/for/fb_integration
MMT: Git Create MR With Release And Push
git checkout integartion
git reset --hard
git pull --rebase
git merge origin/your current branch --no-ff --no-commit
git commit
git push origin HEAD:refs/for/fb_integration
MMT: Git Create MR With Existing Branch And Push
git checkout existing branch
git reset --hard
git pull --rebase
git merge origin/your current branch --no-ff --no-commit
git commit
git push origin HEAD:refs/for/fb_integration
MMT: Git Create New Branch From Release
git checkout -b new_branch_name release
MMT: Git Create New Branch From Existing Branch
git checkout -b new_branch_name existing_branch_name
MMT: Find Console logs
Run it before staging all the changes.
Finds 'console' word in all the unstaged files. Then open those files in your workspace.
Release Notes
0.0.3
Console log finding feature added
Open to suggestions and requests