Datatamer / tamr-client

Programmatically interact with Tamr
https://tamr-client.readthedocs.io
Apache License 2.0
11 stars 25 forks source link

Change name of default branch from `master` to `main` #467

Closed skalish closed 3 years ago

skalish commented 4 years ago

We should follow through on a commitment to change the default branch name of the repo from the problematic name master to the Github-recommended name main.

pcattori commented 4 years ago

Github has guidance for changing the default branch name.

Note that they claim to "make it seamless for existing repositories to rename their default branch. When you rename the branch, we’ll retarget your open PRs and draft releases, move your branch protection policies, and more - all automatically" by "later this year" (see seamless move for existing repositories)

pcattori commented 3 years ago

For instructions on updating your forks, see Easily rename your Git default branch from master to main, namely:

git checkout master
git branch -m master main
git fetch
git branch --unset-upstream
git branch -u origin/main
git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main

replacing origin with the git remote that corresponds to your fork.

github-actions[bot] commented 3 years ago

:tada: This issue has been resolved in version 1.3.0 :tada:

The release is available on:

Your semantic-release bot :package::rocket: