onnx / onnx-tensorflow

Tensorflow Backend for ONNX
Other
1.27k stars 296 forks source link

Renaming `master` to `main` #1007

Closed kevinch-nv closed 2 years ago

kevinch-nv commented 2 years ago

Hello ONNX partner,

Based on best practices at most of the ONNX member companies, the ONNX community is recommending that we rename the master branch in our repos as main.

GitHub has simplified the process as described at https://github.com/github/renaming. Please switch over once all dependencies are aware of the change.

Thanks!

chinhuang007 commented 2 years ago

Renamed default to main. If you have a local clone, you can update it by running the following commands.

git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

You might need to rename the branch in your cloned repo to "main" before running the commands.

chinhuang007 commented 2 years ago

Done!