how to switch from master to main in git code example

Example 1: rename branch to main

$ git push -u origin main

Example 2: rename branch to main

$ git push origin --delete master

Example 3: how to switch from master to main

git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main

Example 4: how to switch from master to main

Steps
Step 1 – Move the master branch to 'main'
Step 2 – Push 'main' to remote repo.
Step 3 – Point HEAD to 'main' branch.
Step 4 – Change default branch to 'main' on GitHub site.
Step 5 – Delete 'master' branch on the remote repo.