aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeremy Rand <jeremyrand@airmail.cc>2022-02-13 06:02:25 +0000
committerJeremy Rand <jeremyrand@airmail.cc>2022-02-13 06:02:25 +0000
commit876b91c3833d388279baeae82e3efcb3d462f2ca (patch)
tree0c767aa4980c3cbdc45ff477c7af6834a9792708 /doc
parentb6b7815ddcff53177bb1f6318b39a4134cf42cb1 (diff)
downloadbitcoin-876b91c3833d388279baeae82e3efcb3d462f2ca.tar.xz
release-process: Specify remote name in "git fetch"
Avoids "does not appear to be a git repository" error. Fixes #24329
Diffstat (limited to 'doc')
-rw-r--r--doc/release-process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release-process.md b/doc/release-process.md
index f786b345b1..742d349c17 100644
--- a/doc/release-process.md
+++ b/doc/release-process.md
@@ -97,7 +97,7 @@ Checkout the Bitcoin Core version you'd like to build:
pushd ./bitcoin
SIGNER='(your builder key, ie bluematt, sipa, etc)'
VERSION='(new version without v-prefix, e.g. 0.20.0)'
-git fetch "v${VERSION}"
+git fetch origin "v${VERSION}"
git checkout "v${VERSION}"
popd
```