1 # git-gui branch merge support
2 # Copyright (C) 2006, 2007 Shawn Pearce
6 field w
; # top level window
7 field w_rev
; # mega-widget to pick the revision to merge
10 global HEAD commit_type file_states
12 if {[string match amend
* $commit_type]} {
13 info_popup
[mc
"Cannot merge while amending.
15 You must finish amending this commit before starting any type of merge.
20 if {[committer_ident
] eq
{}} {return 0}
21 if {![lock_index merge
]} {return 0}
23 # -- Our in memory state should match the repository.
25 repository_state curType curHEAD curMERGE_HEAD
26 if {$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
27 info_popup
[mc
"Last scanned state does not match repository state.
29 Another Git program has modified this repository since the last scan. A rescan must be performed before a merge can be performed.
31 The rescan will be automatically started now.
38 foreach path
[array names file_states
] {
39 switch -glob -- [lindex $file_states($path) 0] {
41 continue; # and pray it works!
45 error_popup
[mc
"You are in the middle of a conflicted merge.
47 File %s has merge conflicts.
49 You must resolve them, stage the file, and commit to complete the current merge. Only then can you begin another merge.
55 error_popup
[mc
"You are in the middle of a change.
59 You should complete the current commit before starting a merge. Doing so will help you abort a failed merge, should the need arise.
71 if {[catch {$w_rev commit_or_die
}]} {
77 method _visualize
{} {
80 do_gitk
[list $rev --not HEAD
]
85 global HEAD current_branch remote_url
86 global _last_merged_branch
93 set spec
[$w_rev get_tracking_branch
]
94 set cmit
[$w_rev get_commit
]
96 set fh
[open [gitdir FETCH_HEAD
] w
]
97 fconfigure $fh -translation lf
103 set remote
$remote_url([lindex $spec 1])
104 if {[regexp {^
[^
:@]*@[^
:]*:/} $remote]} {
105 regsub {^
[^
:@]*@} $remote {} remote
107 set branch
[lindex $spec 2]
108 set stitle
[mc
"%s of %s" $branch $remote]
110 regsub ^refs
/heads
/ $branch {} branch
111 puts $fh "$cmit\t\tbranch '$branch' of $remote"
113 set _last_merged_branch
$branch
115 if {[git-version
>= "2.5.0"]} {
116 set cmd
[list git merge
--strategy=recursive FETCH_HEAD
]
120 lappend cmd
--strategy=recursive
121 lappend cmd
[git fmt-merge-msg
<[gitdir FETCH_HEAD
]]
126 ui_status
[mc
"Merging %s and %s..." $current_branch $stitle]
127 set cons
[console::new [mc
"Merge"] "merge $stitle"]
128 console::exec $cons $cmd [cb _finish
$cons]
130 wm protocol
$w WM_DELETE_WINDOW
{}
134 method _finish
{cons ok
} {
135 console::done $cons $ok
137 set msg
[mc
"Merge completed successfully."]
139 set msg
[mc
"Merge failed. Conflict resolution is required."]
142 rescan
[list ui_status
$msg]
146 constructor dialog
{} {
147 global current_branch
148 global M1B use_ttk NS
150 if {![_can_merge
$this]} {
156 wm title
$top [mc
"%s (%s): Merge" [appname
] [reponame
]]
158 wm geometry
$top "+[winfo rootx .]+[winfo rooty .]"
161 set _start
[cb _start
]
163 ${NS
}::label $w.header
\
164 -text [mc
"Merge Into %s" $current_branch] \
166 pack $w.header
-side top
-fill x
168 ${NS
}::frame $w.buttons
169 ${NS
}::button $w.buttons.visualize
\
170 -text [mc Visualize
] \
171 -command [cb _visualize
]
172 pack $w.buttons.visualize
-side left
173 ${NS
}::button $w.buttons.merge
\
176 pack $w.buttons.merge
-side right
177 ${NS
}::button $w.buttons.cancel
\
178 -text [mc
"Cancel"] \
179 -command [cb _cancel
]
180 pack $w.buttons.cancel
-side right
-padx 5
181 pack $w.buttons
-side bottom
-fill x
-pady 10 -padx 10
183 set w_rev
[::choose_rev::new_unmerged $w.rev
[mc
"Revision To Merge"]]
184 pack $w.rev
-anchor nw
-fill both
-expand 1 -pady 5 -padx 5
186 bind $w <$M1B-Key
-Return
> $_start
187 bind $w <Key-Return
> $_start
188 bind $w <Key-Escape
> [cb _cancel
]
189 wm protocol
$w WM_DELETE_WINDOW
[cb _cancel
]
191 bind $w.buttons.merge
<Visibility
> [cb _visible
]
197 if {[is_config_true gui.matchtrackingbranch
]} {
198 $w_rev pick_tracking_branch
204 wm protocol
$w WM_DELETE_WINDOW
{}
212 namespace eval merge
{
215 global HEAD commit_type file_states
217 if {[string match amend
* $commit_type]} {
218 info_popup
[mc
"Cannot abort while amending.
220 You must finish amending this commit.
225 if {![lock_index abort
]} return
227 if {[string match
*merge
* $commit_type]} {
228 set op_question
[mc
"Abort merge?
230 Aborting the current merge will cause *ALL* uncommitted changes to be lost.
232 Continue with aborting the current merge?"]
234 set op_question
[mc
"Reset changes?
236 Resetting the changes will cause *ALL* uncommitted changes to be lost.
238 Continue with resetting the current changes?"]
241 if {[ask_popup
$op_question] eq
{yes
}} {
242 set fd
[git_read
--stderr read-tree
--reset -u -v HEAD
]
243 fconfigure $fd -blocking 0 -translation binary
244 set status_bar_operation
[$::main_status \
248 fileevent $fd readable
[namespace code
[list \
249 _reset_wait
$fd $status_bar_operation]]
255 proc _reset_wait
{fd status_bar_operation
} {
258 $status_bar_operation update_meter
[read $fd]
260 fconfigure $fd -blocking 1
262 set fail
[catch {close $fd} err
]
264 $status_bar_operation stop
266 $ui_comm delete
0.0 end
267 $ui_comm edit modified false
269 catch {file delete
[gitdir MERGE_HEAD
]}
270 catch {file delete
[gitdir rr-cache MERGE_RR
]}
271 catch {file delete
[gitdir MERGE_RR
]}
272 catch {file delete
[gitdir SQUASH_MSG
]}
273 catch {file delete
[gitdir MERGE_MSG
]}
274 catch {file delete
[gitdir GITGUI_MSG
]}
277 warn_popup
"[mc "Abort failed.
"]\n\n$err"
279 rescan
{ui_status
[mc
"Abort completed. Ready."]}
281 fconfigure $fd -blocking 0