Skip to content

Commit

Permalink
[Documentation] Recommending git clone, instead of fork and clone, in…
Browse files Browse the repository at this point in the history
… the node docs.

[Documentation] Recommending git clone, instead of fork and clone, in the node docs.

[Documentation] Fixing git clone urls.

Closes: #1315
  • Loading branch information
Raj Karamchedu authored and aptos-bot committed Jun 10, 2022
1 parent 6732f33 commit 147099f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR-GITHUB-USERID>/aptos-core.git
$ git clone https://github.com/aptos-labs/aptos-core.git
$ cd aptos-core
$ ./scripts/dev_setup.sh
$ source ~/.cargo/env
Expand Down
12 changes: 4 additions & 8 deletions developer-docs-site/docs/tutorials/full-node/run-a-fullnode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR-GITHUB-USERID>/aptos-core
```
```
git clone https://github.com/aptos-labs/aptos-core.git
```
2. `cd` into `aptos-core` directory.
Expand Down
8 changes: 2 additions & 6 deletions developer-docs-site/docs/tutorials/run-a-local-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR-GITHUB-USERID>/aptos-core
git clone https://github.com/aptos-labs/aptos-core.git
```
2. `cd` into `aptos-core` directory.
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ sidebar_position: 13

```
git clone https://github.com/aptos-labs/aptos-core.git
```
2. `cd` into `aptos-core` directory.
Expand Down

0 comments on commit 147099f

Please sign in to comment.