mirror of
https://github.com/pyenv/pyenv-update.git
synced 2026-01-22 12:37:30 +09:00
Fix "merge: origin - not something we can merge" in recent Git versions
Git 2.13.0 dropped support for the `git merge <msg> HEAD <commit>...` syntax
(b4391657ed)
Closes #29
This commit is contained in:
parent
39b088e56c
commit
4c536d76f9
@ -65,7 +65,7 @@ update_repo() {
|
|||||||
(
|
(
|
||||||
cd "${repo}" && \
|
cd "${repo}" && \
|
||||||
git fetch --tags "${REMOTE}" "${BRANCH_CHOICE}" && \
|
git fetch --tags "${REMOTE}" "${BRANCH_CHOICE}" && \
|
||||||
git merge --ff "${REMOTE}" "${BRANCH_CHOICE}"
|
git merge --ff "${REMOTE}"/"${BRANCH_CHOICE}"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user