git-gui: Add a 'recursive' checkbox in the clone menu.
Permit to do a 'git clone --recursive' through git-gui. Add a 'recursive' checkbox in the clone menu which allows users to clone a repository and all its submodules in one go (unless the 'update' flag is set to "none" in the .gitmodules file for a submodule, in that case that specific submodule is not cloned automatically). Enable this new option per default, as most users want to clone all submodules too when cloning the superproject (This is currently not possible without leaving git gui or adding a custom tool entry for that). Signed-off-by: Henri GEIST <geist.henri@laposte.net> Thanks-to: Jens Lehmann <Jens.Lehmann@web.de> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>maint
parent
3decb8e0ac
commit
2202b8b8bc
|
@ -18,6 +18,7 @@ field local_path {} ; # Where this repository is locally
|
||||||
field origin_url {} ; # Where we are cloning from
|
field origin_url {} ; # Where we are cloning from
|
||||||
field origin_name origin ; # What we shall call 'origin'
|
field origin_name origin ; # What we shall call 'origin'
|
||||||
field clone_type hardlink ; # Type of clone to construct
|
field clone_type hardlink ; # Type of clone to construct
|
||||||
|
field recursive true ; # Recursive cloning flag
|
||||||
field readtree_err ; # Error output from read-tree (if any)
|
field readtree_err ; # Error output from read-tree (if any)
|
||||||
field sorted_recent ; # recent repositories (sorted)
|
field sorted_recent ; # recent repositories (sorted)
|
||||||
|
|
||||||
|
@ -525,6 +526,11 @@ method _do_clone {} {
|
||||||
foreach r $w_types {
|
foreach r $w_types {
|
||||||
pack $r -anchor w
|
pack $r -anchor w
|
||||||
}
|
}
|
||||||
|
${NS}::checkbutton $args.type_f.recursive \
|
||||||
|
-text [mc "Recursively clone submodules too"] \
|
||||||
|
-variable @recursive \
|
||||||
|
-onvalue true -offvalue false
|
||||||
|
pack $args.type_f.recursive
|
||||||
grid $args.type_l $args.type_f -sticky new
|
grid $args.type_l $args.type_f -sticky new
|
||||||
|
|
||||||
grid columnconfigure $args 1 -weight 1
|
grid columnconfigure $args 1 -weight 1
|
||||||
|
@ -952,6 +958,30 @@ method _do_clone_checkout {HEAD} {
|
||||||
fileevent $fd readable [cb _readtree_wait $fd]
|
fileevent $fd readable [cb _readtree_wait $fd]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
method _do_validate_submodule_cloning {ok} {
|
||||||
|
if {$ok} {
|
||||||
|
$o_cons done $ok
|
||||||
|
set done 1
|
||||||
|
} else {
|
||||||
|
_clone_failed $this [mc "Cannot clone submodules."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
method _do_clone_submodules {} {
|
||||||
|
if {$recursive eq {true}} {
|
||||||
|
destroy $w_body
|
||||||
|
set o_cons [console::embed \
|
||||||
|
$w_body \
|
||||||
|
[mc "Cloning submodules"]]
|
||||||
|
pack $w_body -fill both -expand 1 -padx 10
|
||||||
|
$o_cons exec \
|
||||||
|
[list git submodule update --init --recursive] \
|
||||||
|
[cb _do_validate_submodule_cloning]
|
||||||
|
} else {
|
||||||
|
set done 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
method _readtree_wait {fd} {
|
method _readtree_wait {fd} {
|
||||||
set buf [read $fd]
|
set buf [read $fd]
|
||||||
$o_cons update_meter $buf
|
$o_cons update_meter $buf
|
||||||
|
@ -982,7 +1012,7 @@ method _readtree_wait {fd} {
|
||||||
fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
|
fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
|
||||||
fileevent $fd_ph readable [cb _postcheckout_wait $fd_ph]
|
fileevent $fd_ph readable [cb _postcheckout_wait $fd_ph]
|
||||||
} else {
|
} else {
|
||||||
set done 1
|
_do_clone_submodules $this
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -996,7 +1026,7 @@ method _postcheckout_wait {fd_ph} {
|
||||||
hook_failed_popup post-checkout $pch_error 0
|
hook_failed_popup post-checkout $pch_error 0
|
||||||
}
|
}
|
||||||
unset pch_error
|
unset pch_error
|
||||||
set done 1
|
_do_clone_submodules $this
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fconfigure $fd_ph -blocking 0
|
fconfigure $fd_ph -blocking 0
|
||||||
|
|
Loading…
Reference in New Issue