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
checkout the specified local branch (or default branch name)
run 'git pull' which will use the default method configured for git pull, or if -Rebase it will fetch upstream branch and rebase the local branch using the upstream branch
Proposed parameters
Parameter
Mandatory
Data type
Description
Default value
Allowed values
BranchName
No
String
Specifies the local branch name
'main'
n/a
UpstreamBranchName
No
String
Specifies the local branch name
'main'
n/a
Rebase
No
[Switch]
Specifies that it will fetch upstream branch and rebase the local branch using the fetched upstream branch
None
n/a
Special considerations or limitations
Having configure git config --global pull.rebase true will make the commands default behavior do a rebase using git pull.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had activity from the community in the last 30 days. It will be closed if no further activity occurs within 40 days. If the issue is labelled with any of the work labels (e.g bug, enhancement, documentation, or tests) then the issue will not auto-close.
Command proposal
This command should
git pull
, or if-Rebase
it will fetch upstream branch and rebase the local branch using the upstream branchProposed parameters
String
'main'
String
'main'
[Switch]
Special considerations or limitations
Having configure
git config --global pull.rebase true
will make the commands default behavior do a rebase using git pull.The text was updated successfully, but these errors were encountered: