Resolves #768 -- fix pull arguments (same issue)

This commit is contained in:
Peter Cottle 2020-12-30 09:20:03 -07:00
parent a530dcbb16
commit 8a159ea498
2 changed files with 5 additions and 5 deletions

View file

@ -253,7 +253,7 @@ var commandConfig = {
source = firstArg;
assertIsBranch(engine.origin, source);
// get o/master locally if master is specified
destination = engine.origin.refs[source].getPrefixedID();
destination = engine.origin.resolveID(source).getPrefixedID();
} else {
// can't be detached
if (engine.getDetachedHead()) {