Skip to content

Commit c027220

Browse files
committed
master > main
1 parent b9570c7 commit c027220

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can't teach an old dog new tricks! Vulcan Next is the successor of "Vulcan.j
2727
## Install and run in 5 minutes
2828

2929
```sh
30-
git clone https://github.com/VulcanJS/vulcan-next.git
30+
git clone -b main https://github.com/VulcanJS/vulcan-next
3131
yarn
3232
yarn run dev
3333
```
@@ -56,7 +56,7 @@ have to apply the updates by hand, comparing Vulcan Next latest version to your
5656
# Get the latest version of Vulcan Next locally
5757
git fetch upstream
5858
# Merge to your own code (favouring your own code as a default in case of conflict)
59-
git merge upstream/master -X ours
59+
git merge upstream/main -X ours
6060
```
6161

6262
### Roll your own Mongo database

src/content/docs/contributing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ We recommend to install Node using [NVM for Linux/Mac](https://github.com/nvm-sh
1212

1313
We follow the Git Flow model.
1414

15-
- `master`: is the current live version.
16-
- `bugfix/*`: Bugfixes branches should start from master.
17-
- `devel`: Devel is the next version.
18-
- `feature/*`: features branches should start from master.
15+
- `devel`: Devel is the next version. **This is where you want to start for contribution**.
16+
- `main`: is the current live version.
17+
- `bugfix/*`: Bugfixes branches should start from main.
18+
- `feature/*`: features branches should start from devel.
1919
- `support/*x.x.x*`: is for bugfixes for a specific version.
2020
- Tags allow to easily find the commit corresponding to a deployed versions.
2121

src/content/docs/release-process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
```sh
66
### To the right branch
7-
git checkout master && git pull
7+
git checkout main && git pull
88
git checkout devel && git pull
99
# cat package.json | grep version # to get the current version
1010
# git checkout -b release/<next-version>
11-
git merge master # get hot fixes if any
11+
git merge main # get hot fixes if any
1212
git merge devel
1313
rm -Rf node_modules
1414
yarn install # no missing module surprise
@@ -75,10 +75,10 @@ git commit -am "bump version"
7575
```sh
7676

7777
### Deploy
78-
git checkout master && git merge release/<next-version>
78+
git checkout main && git merge release/<next-version>
7979
git push
8080

8181
### Update devel branches with fixes
82-
git checkout develop && git pull && git merge master && git push
82+
git checkout develop && git pull && git merge main && git push
8383

8484
```

0 commit comments

Comments
 (0)