Skip to content

Commit 2976b40

Browse files
committed
make main as default branch
1 parent 229b6fc commit 2976b40

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Explorer CI
22

33
on:
44
push:
5-
branches: [main, staging]
5+
branches: [main]
66
pull_request:
77
workflow_dispatch:
88

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,25 @@ You need only to do this once and you have probably already done this if you alr
3030
### Clone the repository on your local machine.
3131

3232
```
33-
$ git clone git@github.com:username/explorer.git --branch staging
33+
$ git clone git@github.com:username/explorer.git --branch main
3434
$ cd explorer
3535
$ git remote add upstream git@github.com:ripple/explorer.git
3636
```
3737

3838
### Start work in a new branch.
3939

4040
```
41-
$ git fetch upstream staging
42-
$ git checkout staging
41+
$ git fetch upstream main
42+
$ git checkout main
4343
$ git checkout -b your-branch-name
4444
$ git push --set-upstream origin your-branch-name
4545
```
4646

47-
Bring in recent changes to the “staging” branch into your own branch
47+
Bring in recent changes to the “main” branch into your own branch
4848

4949
```
50-
$ git fetch upstream staging
51-
$ git pull upstream staging
50+
$ git fetch upstream main
51+
$ git pull upstream main
5252
```
5353

5454
### Ask to submit code from a branch of your GitHub fork.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Release](https://img.shields.io/github/v/release/ripple/explorer.svg)](https://github.com/ripple/explorer/releases)
22
[![Build](https://github.com/ripple/explorer/actions/workflows/nodejs.yml/badge.svg)](https://github.com/ripple/explorer/actions)
3-
[![License](https://img.shields.io/github/license/ripple/explorer)](https://github.com/ripple/explorer/blob/staging/LICENSE)
3+
[![License](https://img.shields.io/github/license/ripple/explorer)](https://github.com/ripple/explorer/blob/main/LICENSE)
44

55
# XRPL Explorer
66

0 commit comments

Comments
 (0)