intel / intel-ipsec-mb

Intel(R) Multi-Buffer Crypto for IPSec
BSD 3-Clause "New" or "Revised" License
288 stars 87 forks source link

Rename master branch to main #89

Closed pablodelara closed 2 years ago

pablodelara commented 2 years ago

The default branch will be renamed from "master" to "main" branch, following the industry trend, to use a more inclusive language. Further details will be posted in the next days.

pablodelara commented 2 years ago

The default has been renamed to main. For anyone that had already cloned the repo, follow these steps to migrate your local repo:

Switch to the "master" branch: $ git checkout master

Rename it to "main": $ git branch -m master main

Get the latest commits (and branches!) from the remote: $ git fetch

Remove the existing tracking connection with "origin/master": $ git branch --unset-upstream

Create a new tracking connection with the new "origin/main" branch: $ git branch -u origin/main

tkanteck commented 2 years ago

Alternatively clone the repo from scratch

tkanteck commented 2 years ago

Closing this announcement