From 147099f6324d5740f2d0aa1ecef6cf10f03f0422 Mon Sep 17 00:00:00 2001 From: Raj Karamchedu Date: Wed, 8 Jun 2022 13:50:25 -0700 Subject: [PATCH] [Documentation] Recommending git clone, instead of fork and clone, in the node docs. [Documentation] Recommending git clone, instead of fork and clone, in the node docs. [Documentation] Fixing git clone urls. Closes: #1315 --- .../tutorials/full-node/network-identity-fullnode.md | 4 ++-- .../docs/tutorials/full-node/run-a-fullnode.md | 12 ++++-------- .../docs/tutorials/run-a-local-testnet.md | 8 ++------ .../tutorials/validator-node/using-source-code.md | 1 - 4 files changed, 8 insertions(+), 17 deletions(-) diff --git a/developer-docs-site/docs/tutorials/full-node/network-identity-fullnode.md b/developer-docs-site/docs/tutorials/full-node/network-identity-fullnode.md index c6c11a7412715..a5538e92d4725 100644 --- a/developer-docs-site/docs/tutorials/full-node/network-identity-fullnode.md +++ b/developer-docs-site/docs/tutorials/full-node/network-identity-fullnode.md @@ -42,10 +42,10 @@ To create a static identity for your FullNode: Follow the below detailed steps: -1. Fork and clone the [aptos-labs/aptos-core](https://github.com/aptos-labs/aptos-core) repo. For example: +1. Clone the [aptos-labs/aptos-core](https://github.com/aptos-labs/aptos-core) repo. For example: ``` - $ git clone https://github.com//aptos-core.git + $ git clone https://github.com/aptos-labs/aptos-core.git $ cd aptos-core $ ./scripts/dev_setup.sh $ source ~/.cargo/env diff --git a/developer-docs-site/docs/tutorials/full-node/run-a-fullnode.md b/developer-docs-site/docs/tutorials/full-node/run-a-fullnode.md index 7ad3bce95a7ab..11fa07ebc4c67 100755 --- a/developer-docs-site/docs/tutorials/full-node/run-a-fullnode.md +++ b/developer-docs-site/docs/tutorials/full-node/run-a-fullnode.md @@ -69,15 +69,11 @@ This document describes how to configure your public FullNode using both the met ### Using Aptos-core source code -1. Fork and clone the Aptos repo. +1. Clone the Aptos repo. - - Fork the Aptos Core repo by clicking on the **Fork** on the top right of this repo page: https://github.com/aptos-labs/aptos-core. - - Clone your fork. - - ``` - git clone https://github.com//aptos-core - - ``` + ``` + git clone https://github.com/aptos-labs/aptos-core.git + ``` 2. `cd` into `aptos-core` directory. diff --git a/developer-docs-site/docs/tutorials/run-a-local-testnet.md b/developer-docs-site/docs/tutorials/run-a-local-testnet.md index 7e6b6d89bfbe2..2b6a8bd4c7cb2 100755 --- a/developer-docs-site/docs/tutorials/run-a-local-testnet.md +++ b/developer-docs-site/docs/tutorials/run-a-local-testnet.md @@ -22,16 +22,12 @@ The rest of this document describes: ## Using the Aptos-core source code -1. Fork and clone the Aptos repo. - - - Fork the Aptos Core repo by clicking on the **Fork** on the top right of this repo page: https://github.com/aptos-labs/aptos-core. - - Clone your fork. +1. Clone the Aptos repo. ``` - git clone https://github.com//aptos-core + git clone https://github.com/aptos-labs/aptos-core.git ``` - 2. `cd` into `aptos-core` directory. ``` diff --git a/developer-docs-site/docs/tutorials/validator-node/using-source-code.md b/developer-docs-site/docs/tutorials/validator-node/using-source-code.md index 85c3379227ef7..0cd2a1938162f 100644 --- a/developer-docs-site/docs/tutorials/validator-node/using-source-code.md +++ b/developer-docs-site/docs/tutorials/validator-node/using-source-code.md @@ -10,7 +10,6 @@ sidebar_position: 13 ``` git clone https://github.com/aptos-labs/aptos-core.git - ``` 2. `cd` into `aptos-core` directory.