简体   繁体   中英

Git run shell command for each commit

I would like to walk through a range of commits and perform a shell command on each. If the command fails, I would like the walk to stop, otherwise keep going. I have looked at filter-branch , but I don't want to re-write the commits, just check them out. for-each-ref does not seem to allow you to specify a range to act on.

My specific problem is that I created a bunch of commits and I would like to ensure that each commit is buildable. I would like to do something like:

git foreach origin/master..master 'git submodule update && make clean && make'

I could of course write a shell script to do this, but it seems like the sort of thing that git might have a nice way to do.

You can use interactive rebase with an exec option.

git rebase -i --exec <build command> <first sha you want to test>~

--exec Append "exec " after each line creating a commit in the final history. will be interpreted as one or more shell commands.

Reordering and editing commits usually creates untested intermediate steps. You may want to check that your history editing did not break anything by running a test, or at least recompiling at intermediate points in history by using the "exec" command (shortcut "x").

The interactive rebase will stop when a command fails (ie exits with non-0 status) to give you an opportunity to fix the problem.

You probably want rev-list .

#!/usr/bin/env bash
# test_commits.sh

while read -r rev; do
    git checkout "$rev"
    if ! git submodule update && make clean && make; then
        >&2 echo "Commit $rev failed"
        exit 1
    fi
done < <(git rev-list "$1")

Then you can use it with

./test_commits.sh origin/master..master

Here's a cool one-liner using xargs .

git rev-list @{upstream}..HEAD | xargs -n1 -I{} sh -c 'git checkout {} && git submodule update && make clean && make'

You may also want to pass the --reverse option to rev-list so that the last checkout is HEAD.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM