kopia lustrzana https://github.com/jupyterhub/repo2docker
Merge pull request #810 from betatim/no-checkout-detached-heads
[MRG] Remove explicit checkout when ref givenpull/818/head
commit
242107b0c4
|
@ -48,12 +48,9 @@ class Git(ContentProvider):
|
||||||
"Failed to check out ref %s", ref, extra=dict(phase="failed")
|
"Failed to check out ref %s", ref, extra=dict(phase="failed")
|
||||||
)
|
)
|
||||||
raise ValueError("Failed to check out ref {}".format(ref))
|
raise ValueError("Failed to check out ref {}".format(ref))
|
||||||
# check out ref as it has not been done yet
|
# We don't need to explicitly checkout things as the reset will
|
||||||
for line in execute_cmd(
|
# take of that. If the hash is resolved above, we should be
|
||||||
["git", "checkout", hash], cwd=output_dir, capture=yield_output
|
# able to reset to it
|
||||||
):
|
|
||||||
yield line
|
|
||||||
# If the hash is resolved above, we should be able to reset to it
|
|
||||||
for line in execute_cmd(
|
for line in execute_cmd(
|
||||||
["git", "reset", "--hard", hash], cwd=output_dir, capture=yield_output
|
["git", "reset", "--hard", hash], cwd=output_dir, capture=yield_output
|
||||||
):
|
):
|
||||||
|
|
Ładowanie…
Reference in New Issue