Skip to content

Git instructions

Anna Natorilla edited this page Jul 12, 2016 · 6 revisions

Step 1: From your project repository, bring in the changes and test.

git fetch origin

git checkout -b adminLogonFeature origin/adminLogonFeature

git merge qa

Step 2: Merge the changes and update on GitHub.

git checkout qa

git merge --no-ff adminLogonFeature

git push origin qa

Delete a local branch

git branch -d name-of-branch

push local branch to remote github

git push origin name-of-local-branch

Clone this wiki locally