madewild / tac

Course material for "Traitement automatique de corpus" at ULB
MIT License
7 stars 105 forks source link

Rename master to main #52

Closed madewild closed 2 years ago

madewild commented 2 years ago

I renamed master to main to align with current best practices.

@devironl you may need to follow these steps:

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

madewild commented 2 years ago

When it's done on your side you can close this issue

devironl commented 2 years ago

Done :-) Thanks for the instructions