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
When implementing Git.pull() we wondered why Git.push() is implemented as git push origin ${refSpec}. With this it is impossible to push to other remotes than origin.
It would be a good idea to remove the origin, but then this would break backwards compatibility.
So with a version 2.x of ces-build-lib this behaviour should change.
For now, we implement pull() without origin so it behaves more correct but different than push() :-/
The text was updated successfully, but these errors were encountered:
When implementing
Git.pull()
we wondered whyGit.push()
is implemented asgit push origin ${refSpec}
. With this it is impossible to push to other remotes thanorigin
.It would be a good idea to remove the
origin
, but then this would break backwards compatibility.So with a version 2.x of ces-build-lib this behaviour should change.
For now, we implement
pull()
withoutorigin
so it behaves more correct but different thanpush()
:-/The text was updated successfully, but these errors were encountered: