Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3791148
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:25:31+00:00 2026-05-19T12:25:31+00:00

I’m new to git, and am using a centralized workflow, similar to svn. I’d

  • 0

I’m new to git, and am using a centralized workflow, similar to svn. I’d like to periodically know what my status is compared to the central repo. For example, if I run the following commands…

$ git clone git@github.com:centralrepo/test.git
$ cd test; <make some changes inside test/>
$ git commit -a
$ git pull

…git pull says “already up-to-date”. Why doesn’t git pull report changes, and if that’s the correct behavior, is there a way to know my local is out of sync with the remote?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:25:32+00:00Added an answer on May 19, 2026 at 12:25 pm

    git pull will fetch any changes made in the remote repository into yours, equivalent to svn update. However, it will not mention if there are changes made at your end that are not on the remote. You can also do git fetch to fetch updates from the remote without applying them to your workspace.

    With recent versions of git (e.g. 1.7.2.3 here) git status will print some information to help you see this, e.g.:

    # On branch master
    # Your branch is behind 'origin/master' by 20 commits, and can be fast-forwarded.
    

    This is showing after I did a git fetch and means there are changes waiting to go into my workspace (applied by doing git pull)

    By contrast, if I pull those in and make and commit a change locally, git status tells me:

    # On branch master
    # Your branch is ahead of 'origin/master' by 1 commit.
    

    That is, I have local changes that can be pushed to the remote. I could then list them by doing git log origin/master..

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.