We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To maintain the integrity of the branches and ensure we can deploy features independently we follow these rules:
# switch to the master branch git checkout master # grab the latest from origin/master git merge origin master # create your feature branch (example name 34320-AutoShipImportError) git checkout -b 34320-AutoShipImportError
# stage and commit your changes to feature branch git add -A git commit -m "34320-AutoShipImportError - adding validations to form"
# merge from origin/master and resolve any conflicts git merge origin master # create dev feature branch git checkout -b 34320-AutoShipImportError-develop 34320-AutoShipImportError # merge from develop (and resolve conflicts) git merge origin develop # push develop branch git push origin 34320-AutoShipImportError-develop
Go to TFS and open a Pull Request with squashing to merge feature branch into develop.
# checkout your feature branch and merge from master git checkout 34320-AutoShipImportError git merge origin master # push your branch to origin git push origin 34320-AutoShipImportError
Open a Pull Request to merge feature branch into master
The text was updated successfully, but these errors were encountered:
No branches or pull requests
git Cheat Sheet
The Rules
To maintain the integrity of the branches and ensure we can deploy features independently we follow these rules:
Step 1
Create your feature branch
Step 2
Commit your changes
Step 3
Deploy changes to dev for internal review
Go to TFS and open a Pull Request with squashing to merge feature branch into develop.
Step 4
Deploy changes to production
Open a Pull Request to merge feature branch into master
The text was updated successfully, but these errors were encountered: