mirror of
https://github.com/git/git.git
synced 2026-03-19 05:00:08 +01:00
Merge branch 'master' into next
* master: Git 1.7.3 rc2 git-gui 0.13 git-gui: avoid mis-encoding the copyright message on Windows. git-gui: Update Swedish translation (521t). git-gui: ensure correct application termination in git-gui--askpass git-gui: handle textconv filter on Windows and in development git-gui: use shell to launch textconv filter in "blame" git-gui: display error launching blame as a message box. git-gui: Make usage statement visible on Windows.
This commit is contained in:
@@ -4,7 +4,8 @@ Git v1.7.3 Release Notes (draft)
|
||||
Updates since v1.7.2
|
||||
--------------------
|
||||
|
||||
* git-gui got various updates and a new maintainer, Pat Thoyts.
|
||||
* git-gui, now at version 0.13.0, got various updates and a new
|
||||
maintainer, Pat Thoyts.
|
||||
|
||||
* Gitweb allows its configuration to change per each request; it used to
|
||||
read the configuration once upon startup.
|
||||
@@ -63,16 +64,21 @@ release, unless otherwise noted.
|
||||
* "git fetch $url" (i.e. without refspecs) was broken for quite some
|
||||
time, if the current branch happen to be tracking some remote.
|
||||
|
||||
* "git ls-tree dir dirgarbage", when "dir" was a directory,
|
||||
incorrectly recursed into "dir".
|
||||
|
||||
* "git note remove" created unnecessary extra commit when named object
|
||||
did not have any note to begin with.
|
||||
|
||||
* "git rebase" did not work well if you had diff.noprefix configured.
|
||||
|
||||
* "git -c foo=bar subcmd" did not work well for subcmd that is not
|
||||
implemented as a built-in command.
|
||||
|
||||
---
|
||||
exec >/var/tmp/1
|
||||
echo O=$(git describe master)
|
||||
O=v1.7.3-rc0
|
||||
O=v1.7.3-rc2
|
||||
git shortlog --no-merges $O..master ^maint
|
||||
exit 0
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
GVF=GIT-VERSION-FILE
|
||||
DEF_VER=v1.7.3-rc1
|
||||
DEF_VER=v1.7.3-rc2
|
||||
|
||||
LF='
|
||||
'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
GVF=GIT-VERSION-FILE
|
||||
DEF_VER=0.12.GITGUI
|
||||
DEF_VER=0.13.GITGUI
|
||||
|
||||
LF='
|
||||
'
|
||||
|
||||
@@ -215,6 +215,7 @@ endif
|
||||
$(GITGUI_MAIN): git-gui.sh GIT-VERSION-FILE GIT-GUI-VARS
|
||||
$(QUIET_GEN)rm -f $@ $@+ && \
|
||||
sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
|
||||
-e 's|@@SHELL_PATH@@|$(SHELL_PATH_SQ)|' \
|
||||
-e '1,30s|^ argv0=$$0| argv0=$(GITGUI_SCRIPT)|' \
|
||||
-e '1,30s|^ exec wish | exec '\''$(TCLTK_PATH_SED)'\'' |' \
|
||||
-e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
|
||||
|
||||
@@ -5,6 +5,8 @@ exec wish "$0" -- "$@"
|
||||
# This is a trivial implementation of an SSH_ASKPASS handler.
|
||||
# Git-gui uses this script if none are already configured.
|
||||
|
||||
package require Tk
|
||||
|
||||
set answer {}
|
||||
set yesno 0
|
||||
set rc 255
|
||||
@@ -30,16 +32,20 @@ if {!$yesno} {
|
||||
|
||||
frame .b
|
||||
button .b.ok -text OK -command finish
|
||||
button .b.cancel -text Cancel -command {destroy .}
|
||||
button .b.cancel -text Cancel -command cancel
|
||||
|
||||
pack .b.ok -side left -expand 1
|
||||
pack .b.cancel -side right -expand 1
|
||||
pack .b -side bottom -fill x -padx 10 -pady 10
|
||||
|
||||
bind . <Visibility> {focus -force .e}
|
||||
bind . <Key-Return> finish
|
||||
bind . <Key-Escape> {destroy .}
|
||||
bind . <Destroy> {exit $rc}
|
||||
bind . <Key-Return> [list .b.ok invoke]
|
||||
bind . <Key-Escape> [list .b.cancel invoke]
|
||||
bind . <Destroy> {set rc $rc}
|
||||
|
||||
proc cancel {} {
|
||||
set ::rc 255
|
||||
}
|
||||
|
||||
proc finish {} {
|
||||
if {$::yesno} {
|
||||
@@ -50,10 +56,11 @@ proc finish {} {
|
||||
}
|
||||
}
|
||||
|
||||
set ::rc 0
|
||||
puts $::answer
|
||||
destroy .
|
||||
set ::rc 0
|
||||
}
|
||||
|
||||
wm title . "OpenSSH"
|
||||
tk::PlaceWindow .
|
||||
vwait rc
|
||||
exit $rc
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
exec wish "$argv0" -- "$@"
|
||||
|
||||
set appvers {@@GITGUI_VERSION@@}
|
||||
set copyright [encoding convertfrom utf-8 {
|
||||
Copyright © 2006, 2007 Shawn Pearce, et. al.
|
||||
set copyright [string map [list (c) \u00a9] {
|
||||
Copyright (c) 2006-2010 Shawn Pearce, et. al.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@@ -128,6 +128,7 @@ set _githtmldir {}
|
||||
set _reponame {}
|
||||
set _iscygwin {}
|
||||
set _search_path {}
|
||||
set _shellpath {@@SHELL_PATH@@}
|
||||
|
||||
set _trace [lsearch -exact $argv --trace]
|
||||
if {$_trace >= 0} {
|
||||
@@ -137,6 +138,18 @@ if {$_trace >= 0} {
|
||||
set _trace 0
|
||||
}
|
||||
|
||||
proc shellpath {} {
|
||||
global _shellpath env
|
||||
if {[string match @@* $_shellpath]} {
|
||||
if {[info exists env(SHELL)]} {
|
||||
return $env(SHELL)
|
||||
} else {
|
||||
return /bin/sh
|
||||
}
|
||||
}
|
||||
return $_shellpath
|
||||
}
|
||||
|
||||
proc appname {} {
|
||||
global _appname
|
||||
return $_appname
|
||||
@@ -2845,7 +2858,13 @@ bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
|
||||
|
||||
set subcommand_args {}
|
||||
proc usage {} {
|
||||
puts stderr "usage: $::argv0 $::subcommand $::subcommand_args"
|
||||
set s "usage: $::argv0 $::subcommand $::subcommand_args"
|
||||
if {[tk windowingsystem] eq "win32"} {
|
||||
wm withdraw .
|
||||
tk_messageBox -icon info -title "Usage" -message $s
|
||||
} else {
|
||||
puts stderr $s
|
||||
}
|
||||
exit 1
|
||||
}
|
||||
|
||||
@@ -2938,7 +2957,12 @@ blame {
|
||||
}
|
||||
blame {
|
||||
if {$head eq {} && ![file exists $path]} {
|
||||
puts stderr [mc "fatal: cannot stat path %s: No such file or directory" $path]
|
||||
catch {wm withdraw .}
|
||||
tk_messageBox \
|
||||
-icon error \
|
||||
-type ok \
|
||||
-title [mc "git-gui: fatal error"] \
|
||||
-message [mc "fatal: cannot stat path %s: No such file or directory" $path]
|
||||
exit 1
|
||||
}
|
||||
blame::new $head $path $jump_spec
|
||||
|
||||
@@ -460,7 +460,14 @@ method _load {jump} {
|
||||
}
|
||||
if {$commit eq {}} {
|
||||
if {$do_textconv ne 0} {
|
||||
set fd [open |[list $textconv $path] r]
|
||||
# Run textconv with sh -c "..." to allow it to
|
||||
# contain command + arguments. On windows, just
|
||||
# call the filter command.
|
||||
if {![file executable [shellpath]]} {
|
||||
set fd [open |[linsert $textconv end $path] r]
|
||||
} else {
|
||||
set fd [open |[list [shellpath] -c "$textconv \"\$0\"" $path] r]
|
||||
}
|
||||
} else {
|
||||
set fd [open $path r]
|
||||
}
|
||||
|
||||
1088
git-gui/po/sv.po
1088
git-gui/po/sv.po
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user