git version 1.7.3.5
I have the following branches:
git branch image master * video
I worked in an office. And when I got home, I constantly update my home laptop.
However, when I did git remote show origin , I got the following:
Local refs configured for 'git push': image pushes to image (up to date) master pushes to master (fast-forwardable) video pushes to video (local out of date)
So, I did git pull for all of these branches:
git pull origin image git pull origin master git pull origin video
When I execute git status on the video and image branch, I get:
nothing to commit (working directory clean)
When I execute git status on the main branch, I get:
Your branch is ahead of 'origin/master' by 5 commits.
I do not understand the following (fast-forwardable) and (local out of date) ?
But in git state for the video did he say that it is updated?
Do I need to push my master, if he is ahead, 5 commits?
Thanks so much for any suggestions.
git
ant2009
source share