Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull submodule to latest version #384

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions bin/git-delete-submodule
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

submodule=$1

test -z $submodule && echo "submodule required" 1>&2 && exit 1
test -z "$submodule" && echo "submodule required" 1>&2 && exit 1
test ! -f .gitmodules && echo ".gitmodules file not found" 1>&2 && exit 2
NAME="${submodule%/}" # remove tailing /
check_submodule_existence "$NAME"

NAME=$(echo $submodule | sed 's/\/$//g')
test -z $(git config --file=.gitmodules submodule.$NAME.url) && echo "submodule not found" 1>&2 && exit 3

git submodule deinit $NAME
git rm --cached $NAME
rm -rf .git/modules/$NAME
git submodule deinit "$NAME"
git rm --cached "$NAME"
rm -rf .git/modules/"$NAME"
32 changes: 32 additions & 0 deletions bin/git-pull-submodule
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env bash

pull_submodule() {
git submodule update --remote --recursive "${2:---merge}" "$1"
}

while [ "$1" != "" ]; do
case $1 in
-m | --merge )
procedure=--merge
;;
-c | --checkout )
procedure=--checkout
;;
-r | --rebase )
procedure=--rebase
;;
* )
submodule="$1"
;;
esac
shift
done

if [ "$submodule" == "" ]
then
pull_submodule "" "$procedure" # update all submodules
else
submodule="${submodule%/}" # remove tailing /
check_submodule_existence "$submodule"
pull_submodule "$submodule" "$procedure"
fi
7 changes: 7 additions & 0 deletions helper/git-extra-utility
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ git_extra_mktemp() {
mktemp -t "$(basename "$0")".XXX
}

check_submodule_existence() {
if test -z "$(git config --file=.gitmodules submodule."$1".url)"
then
echo "submodule $1 not found" 1>&2
exit 3
fi
}
58 changes: 58 additions & 0 deletions man/git-pull-submodule.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GIT\-PULL\-SUBMODULE" "1" "June 2015" "" ""
.
.SH "NAME"
\fBgit\-pull\-submodule\fR \- Pull submodules
.
.SH "SYNOPSIS"
\fBgit\-pull\-submodule\fR [OPTIONS] [<path>]
.
.SH "DESCRIPTION"
Pull submodule to latest version
.
.SH "OPTIONS"
<path>
.
.P
The path of the submodule to pull\. If no path is given, all submodules will be pulled\.
.
.P
\-m, \-\-merge
.
.P
Merge the submodule\. It is the default one if no option is given\.
.
.P
\-c, \-\-checkout
.
.P
Checkout the submodule\.
.
.P
\-r, \-\-rebase
.
.P
Rebase the submodule\.
.
.SH "EXAMPLES"
.
.nf

# checkout latest version of lib/abc
$ git pull\-submodule \-\-checkout lib/abc

# merge latest version of lib/abc
$ git pull\-submodule lib/abc
.
.fi
.
.SH "AUTHOR"
Written by spacewander <\fIspacewanderlzx@gmail\.com\fR>
.
.SH "REPORTING BUGS"
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
.
.SH "SEE ALSO"
<\fIhttps://github\.com/tj/git\-extras\fR>
133 changes: 133 additions & 0 deletions man/git-pull-submodule.1.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions man/git-pull-submodule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
git-pull-submodule(1) -- Pull submodules
============================================

## SYNOPSIS

`git-pull-submodule` [OPTIONS] [&lt;path&gt;]

## DESCRIPTION

Pull submodule to latest version

## OPTIONS

&lt;path&gt;

The path of the submodule to pull. If no path is given, all submodules will be pulled.

-m, --merge

Merge the submodule. It is the default one if no option is given.

-c, --checkout

Checkout the submodule.

-r, --rebase

Rebase the submodule.

## EXAMPLES

# checkout latest version of lib/abc
$ git pull-submodule --checkout lib/abc

# merge latest version of lib/abc
$ git pull-submodule lib/abc

## AUTHOR

Written by spacewander &lt;<[email protected]>&gt;

## REPORTING BUGS

&lt;<https://github.com/tj/git-extras/issues>&gt;

## SEE ALSO

&lt;<https://github.com/tj/git-extras>&gt;