aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-02-13 08:58:05 +0100
committerMarcoFalke <falke.marco@gmail.com>2022-02-13 08:58:09 +0100
commitb1aa3b1959cab1ad8bb6d0a6a5d05c87c1271cdb (patch)
tree0c767aa4980c3cbdc45ff477c7af6834a9792708
parentb6b7815ddcff53177bb1f6318b39a4134cf42cb1 (diff)
parent876b91c3833d388279baeae82e3efcb3d462f2ca (diff)
downloadbitcoin-b1aa3b1959cab1ad8bb6d0a6a5d05c87c1271cdb.tar.xz
Merge bitcoin/bitcoin#24330: doc: release-process: Specify remote name in "git fetch"
876b91c3833d388279baeae82e3efcb3d462f2ca release-process: Specify remote name in "git fetch" (Jeremy Rand) Pull request description: Avoids "does not appear to be a git repository" error. Fixes #24329 ACKs for top commit: shaavan: ACK 876b91c3833d388279baeae82e3efcb3d462f2ca Tree-SHA512: 0ba23cd51ca761823cab19200b69f07a5c23e1a501114e0af73b24195c306cebb789e187dd436f7b3895a10de31e41276bb2fc4b217cd152247d2704e44bc8da
-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
```