GIT Commands

--------------git push origin v2_1_3-release_branch


//===================================GIT Commands============================
git checkout -b 2.x.x_data_publishing_release
git remote -v
git push origin -u 2.x.x_data_publishing_release
git remote add upstream https://github.com/WSO2Telco/mediation-dep.git
git remote -v
//===================================GIT=====================================


git branch
git status
git clean -f
git log -n 4
git pull
git pull upstream 2.x.x_data_publishing_release
git remote
git remote set-url upstream https://github.com/WSO2Telco/mediation-dep-common
git pull upstream 2.x.x_data_publishing_release
git diff
git checkout -b 2.x.x_data_publishing_release
git push origin 2.x.x_data_publishing_release
git checkout master
git branch -D 2.x.x_data_publishing_release//USING FOR DELETE BRANCH

===============================CORRECT WAY===============================
git remote add upstream https://github.com/WSO2Telco/mediation-dep-common.git
git pull --all
git checkout -b 2.x.x_data_publishing_release upstream/2.x.x_data_publishing_release
git push origin