Skip to content

Commit

Permalink
Added text to explain push in status message
Browse files Browse the repository at this point in the history
  • Loading branch information
anelda authored Nov 30, 2017
1 parent c7762e5 commit 46ffc3e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion _episodes/04-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,13 @@ nothing to commit, working directory clean
~~~
{: .output}

it tells us everything is up to date.
it tells us that our local repository is now differing from the
origin (the repository from which we cloned this one, i.e. the original repository in Github)
by one commit.

It also tells us that we can use the `git push` command to send our commit to the original repo in
Github to syncronise these two repositories.

If we want to know what we've done recently,
we can ask Git to show us the project's history using `git log`:

Expand Down

0 comments on commit 46ffc3e

Please sign in to comment.