Compare commits

..

No commits in common. "a89c0309ad86f492423f7cc18835c0b91829610c" and "f26067b24ff5c94b05ff7de340d7394548585107" have entirely different histories.

View File

@ -166,20 +166,17 @@ namespace eval Git {
}
proc Push {url} {
global cfgVariables activeProject gitUser gitPassword
set cmd exec
# set cmd exec
lappend cmd "$cfgVariables(gitCommand)"
cd $activeProject
lappend cmd "push"
lappend cmd "$url"
# lappend cmd "$activeProject"
puts "$cmd"
catch $cmd pipe
puts $pipe
foreach line [split $pipe "\n"] {
# puts "$line"
lappend res $line
}
return $res
# set pipe [open "|$cfgVariables(gitCommand) $cmd" "RDWR"]
# fconfigure $pipe -buffering none -blocking no
# close $pipe
return
}
proc Merge {} {