Pushing a Change

Goals

  • Learn how to push a change to a remote repository.

Since bare repositories are usually shared on some sort of network server, it is usually difficult to cd into the repo and pull changes. So we need to push our changes into other repositories.

Let’s start by creating a change to be pushed. Edit the README and commit it

README

  1. This is the Hello World example from the git tutorial.
  2. (Changed in the original and pushed to shared)

Execute:

  1. git checkout master
  2. git add README
  3. git commit -m "Added shared comment to readme"

Now push the change to the shared repo.

Execute:

  1. git push shared master

shared is the name of the repository receiving the changes we are pushing. (Remember, we added it as a remote in the previous lab.)

Output:

  1. $ git push shared master
  2. To ../hello.git
  3. b39ac69..78e3ce2 master -> master

NOTE: We had to explicitly name the branch master that was receiving the push. It is possible to set it up automatically, but I never remember the commands to do that. Check out the “Git Remote Branch” gem for easy management of remote branches.