X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=sync.sh;h=498a2b3f894b600bd9deb849b6f8ed676e6f5cde;hb=27b94f650cd4d27bbf8bd9fc33030077a675d4d7;hp=31084e59fc5b3c4beba68503ad88c42dd7f3ba13;hpb=5846c6d81fe821017396caf101bf9f3c0ac2e24a;p=config%2Fdotfiles.git diff --git a/sync.sh b/sync.sh index 31084e5..498a2b3 100755 --- a/sync.sh +++ b/sync.sh @@ -1,21 +1,45 @@ #!/bin/sh -# Fetches the current master from all remotes. Used to sync with all remote -# hosts. No merging is done. +# Syncs with remote hosts in the git (sub)directories. +# +# Allows fetching (no merge) and pushing at the moment. -# Fetch from each remote of each git subdirectory. +# Select the method: fetch, push and status is possible. +if [ x$1 = x -o x$1 = xfetch -o x$1 = xfe ]; then + method=fetch +elif [ $1 = push -o $1 = pu ]; then + method=push +elif [ $1 = status -o $1 = st ]; then + method=status +else + echo "Usage: sync.sh [fetch | fe | push | pu | status | st]" + echo + echo "fetch: Fetch from all remotes." + echo "push: Push to all remotes." + echo "status: Display status for all git repositories." + exit 1 +fi + +# Execute the given method for each git subdirectory. for project in `find . -name .git -type d`; do - if [ -d "$project" ]; then - pwd=`pwd` - cd "$project" + pwd=`pwd` + cd "$project" - # Fetch from all remotes. + # Display all commits not in the master branch. + if [ $method = status ]; then + output=`git log --graph --all --pretty=oneline --color master..` + if [ "x$output" != x ]; then + echo "$project status:" + echo "$output" + fi + # Fetch from/Push to all remotes. + else for remote in `git remote`; do - echo "$project: fetching $remote ..." - git fetch "$remote" + echo "$project: ${method}ing $remote ..." + git $method "$remote" done - - cd "$pwd" fi + + cd "$pwd" done