Skip to content

Instantly share code, notes, and snippets.

@edvm
Created April 10, 2015 15:40
Show Gist options
  • Select an option

  • Save edvm/66dd8e81ae6d0c515496 to your computer and use it in GitHub Desktop.

Select an option

Save edvm/66dd8e81ae6d0c515496 to your computer and use it in GitHub Desktop.
[edvm@laptop mysite]$ git status
On branch master
Your branch is ahead of 'origin/master' by 56 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: static/js/bootstrap.js
modified: templates/_new_header.html
modified: templates/base.html
Untracked files:
(use "git add <file>..." to include in what will be committed)
public/
no changes added to commit (use "git add" and/or "git commit -a")
[edvm@laptop mysite]$ git stash
Saved working directory and index state WIP on master: d274457 #897 replaced Tribeca Health and Fitness with Remoca Gym horizontal logo at homepage partners
HEAD is now at d274457 #897 replaced Tribeca Health and Fitness with Remoca Gym horizontal logo at homepage partners
[edvm@laptop mysite]$ git status
On branch master
Your branch is ahead of 'origin/master' by 56 commits.
(use "git push" to publish your local commits)
Untracked files:
(use "git add <file>..." to include in what will be committed)
public/
nothing added to commit but untracked files present (use "git add" to track)
[edvm@laptop mysite]$ git fetch origin
remote: Counting objects: 18, done.
remote: Compressing objects: 100% (18/18), done.
remote: Total 18 (delta 9), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (18/18), done.
From github.com:GETFYT/fytwebsite
58cfc8e..7a2814f develop -> origin/develop
[edvm@laptop mysite]$ git pull origin master
From github.com:GETFYT/fytwebsite
* branch master -> FETCH_HEAD
Already up-to-date.
[edvm@laptop mysite]$ git push origin master
Total 0 (delta 0), reused 0 (delta 0)
To [email protected]:GETFYT/fytwebsite.git
3acde5a..d274457 master -> master
[edvm@laptop mysite]$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment