git checkout (branch name)
git pull origin (branch name)
git status
git add . OR git add app/code/local/CP/Store/Model/System/Store.php
git commit -m "write message(first task id and then message)"
git push origin (branch name)
merge stpes
-----
git checkout Development
git pull origin Development
git merge (last push branch name)
git push origin Development
to create a branch
git checkout -b
git pull origin (branch name)
git status
git add . OR git add app/code/local/CP/Store/Model/System/Store.php
git commit -m "write message(first task id and then message)"
git push origin (branch name)
merge stpes
-----
git checkout Development
git pull origin Development
git merge (last push branch name)
git push origin Development
to create a branch
git checkout -b
No comments:
Post a Comment