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 6731799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:34:18+00:00 2026-05-26T10:34:18+00:00

I have a git repository with multiple branches. The repository has a makefile which

  • 0

I have a git repository with multiple branches. The repository has a makefile which is identical between branches. I’d like to create a bash script that can be run on a regular basis that pulls all branches from the remote repository and then runs make for every branch that has changed, or been added. The executable created is then moved to another location on the server, and a make clean would be run before beginning on the next branch to be processed.

The order of commands I’d be running would be

make
cp executable /some/other/directory/branch_name
make clean

Is this even possible to do with a shell script, if it is how could I go about implementing this. If a shell script is ill suited to this task, how else can I go about achieving the same result?

  • 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-26T10:34:19+00:00Added an answer on May 26, 2026 at 10:34 am

    I’d do something like this:

    # fetch updates, but don't merge yet
    git fetch    # origin is default
    
    # list all branches
    git for-each-ref --format='%(refname:short)' refs/heads |
    while read branch; do
        # if the branch is not the same as the remote branch...
        if [ "$(git rev-parse $branch)" != "$(git rev-parse origin/$branch)" ]; then
             # only continue to the next step on successful results
             git checkout $branch &&
             git pull &&
             (make &&
             cp executable /somewhere/else;
             make clean)
             # except always make clean as long as we tried to make
             #
             # you might also consider a hard reset and clean, to guarantee things
             # are safe for the next checkout
        fi
    done
    

    The nice thing about fetching first is that you don’t have to unnecessarily check out branches with no changes; if your repo is big this can be a time-saver.

    Obviously there are choices to be made about handling errors; I just went with the simplest thing that still made sense. For more complex handling, you might instead want to do things of the form if make; then ...; else ...; fi, e.g.:

    # die hard on unexpected checkout/pull failures
    if ! (git checkout $branch && git pull); then
        exit 1
    fi
    if make; then
        cp executable /somewhere/else
    else
        # report a build failure?
    fi
    # clean up no matter what
    git clean -xdf
    git reset --hard
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a git repository with multiple branches. How can I know which branches
I have inherited a git repository containing multiple projects in separate directories. I'd like
I have a git repository with two branches; one for code that's used for
I have a Git repository with multiple branches. I'm looking to take certain folders
Let's say I have multiple commits in my local git repository that have not
I have a git repository which tracks an svn repository. I cloned it using
I have a Git repository which contains a number of subdirectories. Now I have
We have a git repository which contains source for a few related Java WARs
I have a git repository (at github.com) with two branches: master and gh-pages. I
I have a local git repository which tracks a remote SVN repository via git

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.