41 'Fetch changes from a remote repository' |
41 'Fetch changes from a remote repository' |
42 )) |
42 )) |
43 self.hgFetchAct.setWhatsThis(self.trUtf8( |
43 self.hgFetchAct.setWhatsThis(self.trUtf8( |
44 """<b>Fetch changes</b>""" |
44 """<b>Fetch changes</b>""" |
45 """<p>This pulls changes from a remote repository into the """ |
45 """<p>This pulls changes from a remote repository into the """ |
46 """local repository. If the pulled changes add a new branch head,""" |
46 """local repository. If the pulled changes add a new branch""" |
47 """ the head is automatically merged, and the result of the merge""" |
47 """ head, the head is automatically merged, and the result of""" |
48 """ is committed. Otherwise, the working directory is updated to""" |
48 """ the merge is committed. Otherwise, the working directory""" |
49 """ include the new changes.</p>""" |
49 """ is updated to include the new changes.</p>""" |
50 )) |
50 )) |
51 self.hgFetchAct.triggered[()].connect(self.__hgFetch) |
51 self.hgFetchAct.triggered[()].connect(self.__hgFetch) |
52 self.actions.append(self.hgFetchAct) |
52 self.actions.append(self.hgFetchAct) |
53 |
53 |
54 def initMenu(self, mainMenu): |
54 def initMenu(self, mainMenu): |