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

  • Home
  • SEARCH
  • 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 8077689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:32:54+00:00 2026-06-05T15:32:54+00:00

Suppose I have a git repository with several branches. I suspect some of the

  • 0

Suppose I have a git repository with several branches. I suspect some of the branches were not pushed upstream, or are outdated, or both (i.e. diverged).

Is there a way to find out which branches are out of sync with remote with one command? (Writing a script is OK but I’d like to know if there’s already such a script).

  • 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-06-05T15:32:56+00:00Added an answer on June 5, 2026 at 3:32 pm

    I’ve done a script. Turns out git branch -v gives the necessary info.

    ~/bin/git-total.sh:

    #!/bin/sh
    
    for DIR in "$@"; do
        # Only git dirs interesting
        [ -d "$DIR/.git" ] && cd "$DIR" || continue
    
        # git branch -v gives ahead/behind info
        # using perl - sorry for this
        MOD=`git branch -v | perl -wlne '/^..(\S+)\s+([a-f0-9]+)\s+(\[ahead\s+(\d+)\])/ or next; print "# Branch ahead: $1"; '`;
    
        # a series of UGLY HACKs to get pretty-printing
        [ ! -z "$MOD" ] && MOD="
    $MOD"
        git status | grep -q '^# Changes' && MOD="$MOD
    # Uncommitted changes present"
    
        # print summary
        [ ! -z "$MOD" ] && echo -e "$DIR:$MOD"
        cd -
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have Git repository like this: git-repo/ directory_1/ directory_2/ directory_3/ This has a
I have a git repository with some commits in it. I want to reproduce
I am new to git and github. Suppose I have a public github repository,
I have a git repository that is just a directory tree (/myprogram/src/com/mycompany/test) with some
Suppose we have the following repository structure on github: company:project.git \- company:submodule.git A developer
Suppose I have the following git commits: aaaaaa bbbbbb cccccc (the latest) I would
I use git for my source management, I have a local repository on my
Backround: Suppose I have the following Git URLs (hosted on github) http://github.com/mikl/drupal.git git://github.com/mikl/drupal.git (Git
Suppose you have a bare repository. It contains 3 files: a.txt b.txt c.txt .
Long story short*, I did some things with my git repository that I don't

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.