Skip to content

Commit

Permalink
Merge pull request #218 from artsy/joeyAghion/master-main
Browse files Browse the repository at this point in the history
Rename main branch from master to main
  • Loading branch information
joeyAghion authored Nov 18, 2021
2 parents ba10e57 + 863aef1 commit 8d3dcd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ not_staging_or_release: &not_staging_or_release
- staging
- release

only_master: &only_master
only_main: &only_main
context: hokusai
filters:
branches:
only: master
only: main

only_release: &only_release
context: hokusai
Expand All @@ -30,12 +30,12 @@ workflows:

- hokusai/push:
name: push-staging-image
<<: *only_master
<<: *only_main
requires:
- hokusai/test

- hokusai/deploy-staging:
<<: *only_master
<<: *only_main
project-name: 'doppler'
requires:
- push-staging-image
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ git remote add upstream https://github.com/artsy/doppler.git
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix.

```
git checkout master
git pull upstream master
git checkout main
git pull upstream main
git checkout -b my-feature-branch
```

Expand Down Expand Up @@ -96,11 +96,11 @@ Go to https://github.com/contributor/doppler and select your feature branch. Cli

#### Rebase

If you've been working on a change for a while, rebase with upstream/master.
If you've been working on a change for a while, rebase with upstream/main.

```
git fetch upstream
git rebase upstream/master
git rebase upstream/main
git push origin my-feature-branch -f
```

Expand Down

0 comments on commit 8d3dcd3

Please sign in to comment.