From f6b6ea301d987c31f77122804884145b1ec8a621 Mon Sep 17 00:00:00 2001 From: Antony Bailey Date: Sat, 23 Aug 2014 22:25:12 +0100 Subject: [PATCH] Change Bitcoin to Dogecoin --- contrib/devtools/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/devtools/README.md b/contrib/devtools/README.md index a57b4e561..0e0d03474 100644 --- a/contrib/devtools/README.md +++ b/contrib/devtools/README.md @@ -9,10 +9,10 @@ A small script to automate merging pull-requests securely and sign them with GPG For example: - ./github-merge.sh bitcoin/bitcoin 3077 + ./github-merge.sh dogecoin/dogecoin 3077 (in any git repository) will help you merge pull request #3077 for the -bitcoin/bitcoin repository. +dogecoin/dogecoin repository. What it does: * Fetch master and the pull request. @@ -32,7 +32,7 @@ Setup --------- Configuring the github-merge tool for the bitcoin repository is done in the following way: - git config githubmerge.repository bitcoin/bitcoin + git config githubmerge.repository dogecoin/dogecoin git config githubmerge.testcmd "make -j4 check" (adapt to whatever you want to use for testing) git config --global user.signingkey mykeyid (if you want to GPG sign) @@ -44,10 +44,10 @@ If you run this script from src/ it will automatically update the year on the co .cpp and .h files if these have a git commit from the current year. For example a file changed in 2014 (with 2014 being the current year): -```// Copyright (c) 2009-2013 The Bitcoin developers``` +```// Copyright (c) 2009-2013 The Dogecoin developers``` would be changed to: -```// Copyright (c) 2009-2014 The Bitcoin developers``` +```// Copyright (c) 2009-2014 The Dogecon developers``` symbol-check.py ==================