I just saw that Heroku created the ability to git push heroku from _main _instead of _master - _and since I’ve been wanting to change my Git repos away from _master _anyway, I thought I’d check it out myself. Luckily, it was simple.

(For a little background info on the issue of master vs main in Git, see here)

I followed these 3 steps:

1. First I had to move my master branch to main using git checkout -b main:

2. Then I had to delete the old master branch using git branch -D master:

3. And now I can deploy from _main _using git push heroku main.

(Heroku builds and runs the pushed code as the latest version of your app)

That’s it. Easy and fast, and no more master branches in my Git repo or Heroku builds.

#devops #git #github #heroku #master #repositories #main

Changing from Git Master to Main on Heroku
1.55 GEEK