How does "git push heroku master" know where to push to and how to push to a different repo? How does "git push heroku master" know where to push to and how to push to a different repo? git git

How does "git push heroku master" know where to push to and how to push to a different repo?


The 'heroku' part is the name of the remote that you have setup - when you create a heroku app the first time it creates a git remote call 'heroku' pointing at your application - if you type 'git remote' within your project it will show you the remote endpoints. There's nothing locking you into using 'heroku' as the name of the remote - if you have multiple environments for your application you may have remotes named production or staging for example.

The 'master' part is the local branch you wish to push to the remote. If you develop in a feature branch for example named 'myfeature' and you want to deploy that to heroku you would do;

git push heroku myfeature:master

the additional :master here is saying push my local myfeature branch into the master branch on the remote - note: heroku can only deploy from the master branch.

If you rename an app the heroku git remote url will change - do a git remote -v which will show you the git repo your app is using, you will probably need to delete your old heroku origin and add the new one, git remote rm heroku then git remote add heroku git@newgitpathfromcontrolpanel

To learn more about Git I would recommend this book


PART 1 : "How does git know where to push to?"

Before executing the above mentioned command:

$ git push heroku master

There are always few other steps to execute: Installing Git and Heroku, creating a local Git repo, signing-up to heroku, log-in heroku via command-line, creating heroku handle to hosting point (explained in PART 2)

1. A local Git repository:

    $ git init    Initialized empty Git repository in .git/    $ git add .    $ git commit -m "my first commit"    Created initial commit 5df2d09: my first commit     44 files changed, 8393 insertions(+), 0 deletions(-)     create mode 100644 README     create mode 100644 Procfile     create mode 100644 app/controllers/source_file    ...

2. Have sign-up(ed) for Heroku and logged-in via command-line:

$ heroku loginEnter your Heroku credentials.Email: user@example.comPassword:Could not find an existing public key.Would you like to generate one? [Yn]Generating new SSH public key.Uploading ssh public key /Users/adam/.ssh/id_rsa.pub

So by running $ git push heroku master you have pushed the code/app to Heroku.


PART 2: but what does heroku and master indicate?

It is more of a Git question than Heroku - Heroku is a hosting platform, which depends on Git (Distributed Version Control System) for deployment.

The basic concept of 'push' is pushing some thing (file, app, ..) we have locally (in our working machine) to somewhere else, in this case to a remote repository (remote machine).

In Git before using 'push' we create a remote (handle) which acts as a reference to a remote repository (Complete URL), we do so using the following command:

$ git remote add <remote-name-of-our-choice> <URL-where-you-be-pushing-yourapp>

The basic structure of 'push' command is:

$ git push <remote-name> <branch>

So $ git push heroku master is actually pushing your code/app/file (from some local Git repo) to a remote repo 'heroku' .

wondering when this 'heroku' remote got created, it was added when you executed $ heroku create

$ heroku createCreating stark-fog-398... done, stack is cedarhttp://stark-fog-398.herokuapp.com/ | git@heroku.com:stark-fog-398.gitGit remote heroku added

Do notice the last line "Git remote heroku added".

to make it more clear, here's a Git command to check/output all the remotes:$ git remote -vwill display something similar to the following

$ git remote -vheroku     git@heroku.com:somerepo.git (fetch)heroku     git@heroku.com:somerepo.git (push)

So we can assume that the following command was executed (implicitly) somewhere, when you did $ heroku create , hence creating the heroku remote to some heroku repo (url)*

$ git remote add heroku git@heroku.com:somerepo.git


heroku is required as part of the heroku gem to assist with the push, and master is simply the git branch you are pushing. The git knows where to push to because you create a heroku application the push is automatically setup, which you can see by typing

git remote -v

if you need to change that remove it with git remote rm heroku and then add yoru new application with git remote add heroku git@heroku.com:your-application-15.git