[PATCH v2 1/1] p4 unshelve: fix "Not a valid object name HEAD0" on Windows

2019-05-28 Thread Mike Mueller via GitGitGadget
From: Mike Mueller git p4 unshelve was failing with these errors: fatal: Not a valid object name HEAD0 Command failed: git cat-file commit HEAD^0 (git version 2.21.0.windows.1, python 2.7.16) The pOpen call used by git-p4 to invoke the git command can take either a string or an array as a firs

[PATCH v2 0/1] p4: fix "Not a valid object name HEAD0" when unshelving

2019-05-28 Thread Mike Mueller via GitGitGadget
git p4 unshelve was failing with "fatal: Not a valid object name HEAD0" and "Command failed: git cat-file commit HEAD^0" on certain systems e.g. git version 2.21.0.windows.1 + python 2.7.16 It seems that certain python pOpen implementations drop the ^ character when invoked using a string instead

[PATCH 0/1] p4: fix "Not a valid object name HEAD0" when unshelving

2019-05-10 Thread Mike Mueller via GitGitGadget
git p4 unshelve was failing with "fatal: Not a valid object name HEAD0" and "Command failed: git cat-file commit HEAD^0" on certain systems e.g. git version 2.21.0.windows.1 + python 2.7.16 It seems that certain python pOpen implementations drop the ^ character when invoked using a string instead

[PATCH 1/1] p4 unshelve: fix "Not a valid object name HEAD0"

2019-05-10 Thread Mike Mueller via GitGitGadget
From: Mike Mueller git p4 unshelve was failing with these errors on Windows: fatal: Not a valid object name HEAD0 Command failed: git cat-file commit HEAD^0 (git version 2.21.0.windows.1, python 2.7.16) The pOpen call used by git-p4 to invoke the git command can take either a string or an arra