You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For our new workflow, on a feature branch we want to merge rather than rebase if it's been posted for review. We'd like "git pullall" to automagically do this for us.
The text was updated successfully, but these errors were encountered:
We have a 3rd use case as well: if a feature branch has been updated from master using Github's UI button, and we want to update the local feature branch, we want to pull from the remote feature branch, not master, and we want to rebase, not merge:
Expands the pullall and review commands into scripts that give us these
features:
+ pullall pulls from both the upstream master and upstream feature branch,
if it exists.
+ review checks for the branch name matching our conventions.
Fixes#2192
Expands the pullall and review commands into scripts that give us these
features:
+ pullall pulls from both the upstream master and upstream feature branch,
if it exists, using the appropriate rebase or merge in each case.
+ review checks for the branch name matching our conventions.
Fixes#2192
For our new workflow, on a feature branch we want to merge rather than rebase if it's been posted for review. We'd like "git pullall" to automagically do this for us.
The text was updated successfully, but these errors were encountered: