Sat, 17 Oct 2015 00:58:46 +0200 |
Mads Kiilerich |
spelling: trivial spell checking
|
Thu, 08 Oct 2015 12:55:45 -0700 |
Pierre-Yves David |
error: get Abort from 'error' instead of 'util'
|
Sat, 08 Aug 2015 20:03:58 -0700 |
Gregory Szorc |
subrepo: use absolute_import
|
Thu, 25 Jun 2015 17:57:26 -0500 |
Matt Mackall |
subrepo: mark internal-only option
|
Fri, 10 Jul 2015 00:59:51 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.dirname instead of os.path.dirname
|
Fri, 10 Jul 2015 00:59:51 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.basename instead of os.path.basename
|
Fri, 10 Jul 2015 00:59:51 +0900 |
FUJIWARA Katsunori |
subrepo: use repo.pathto instead of util.pathto to simplify invocation
|
Fri, 10 Jul 2015 00:59:51 +0900 |
FUJIWARA Katsunori |
subrepo: prefetch ctx.repo() for efficiency and centralization
|
Tue, 23 Jun 2015 22:20:08 -0700 |
Gregory Szorc |
global: mass rewrite to use modern exception syntax
|
Tue, 23 Jun 2015 22:30:33 -0700 |
Gregory Szorc |
global: mass rewrite to use modern octal syntax
|
Tue, 16 Jun 2015 23:06:57 -0400 |
Matt Harbison |
archive: support 'wdir()'
|
Tue, 16 Jun 2015 23:03:36 -0400 |
Matt Harbison |
subrepo: allow a representation of the working directory subrepo
|
Tue, 16 Jun 2015 16:15:15 -0400 |
Matt Harbison |
verify: check the subrepository references in .hgsubstate
|
Sun, 14 Jun 2015 21:51:57 -0400 |
Matt Harbison |
subrepo: introduce hgsubrepo._getctx()
|
Wed, 03 Jun 2015 13:45:42 -0400 |
Matt Harbison |
subrepo: introduce the nullsubrepo() method
|
Sun, 17 May 2015 22:42:47 -0400 |
Matt Harbison |
files: recurse into subrepos automatically with an explicit path
|
Mon, 18 May 2015 12:31:41 -0500 |
Pierre-Yves David |
subrepo: further replacement of try/except with 'next'
|
Fri, 15 May 2015 23:13:05 -0400 |
Matt Harbison |
subrepo: introduce getfileset()
|
Wed, 06 May 2015 17:15:38 +0200 |
Mathias De Maré |
subrepo: correctly handle git subdirectory status change
|
Mon, 04 May 2015 22:33:29 -0400 |
Matt Harbison |
archive: always use portable path component separators with subrepos
stable
|
Tue, 03 Feb 2015 15:01:43 -0500 |
Matt Harbison |
subrepo: propagate the --hidden option to hg subrepositories
stable
|
Mon, 27 Apr 2015 21:34:23 -0400 |
Matt Harbison |
subrepo: don't pass the outer repo's --rev or --branch to subrepo incoming()
stable
|
Mon, 27 Apr 2015 21:15:25 -0400 |
Matt Harbison |
subrepo: don't pass the outer repo's --rev or --branch to subrepo outgoing()
stable
|
Fri, 24 Apr 2015 23:23:55 -0400 |
Matt Harbison |
subrepo: don't write .hgsubstate lines with empty subrepo state (issue4622)
stable
|
Wed, 15 Apr 2015 11:49:44 -0400 |
Matt Harbison |
subrepo: calculate _relpath for hgsubrepo based on self instead of parent
|
Wed, 15 Apr 2015 11:23:26 -0400 |
Matt Harbison |
subrepo: backout 93b0e0db7929 to restore reporelpath()
|
Tue, 14 Apr 2015 20:09:56 +0200 |
Mathias De Maré |
subrepo: add include/exclude support for diffing git subrepos
|
Sat, 11 Apr 2015 23:00:04 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.walk instead of os.walk
|
Sat, 11 Apr 2015 23:00:04 +0900 |
FUJIWARA Katsunori |
subrepo: pass wvfs to _sanitize instead of absolute path to a subrepository
|
Sat, 07 Feb 2015 12:57:40 -0500 |
Matt Harbison |
subrepo: convert the os.path references in git to vfs
|
Sat, 11 Apr 2015 00:47:09 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.removedirs instead of os.removedirs
|
Sat, 11 Apr 2015 00:47:09 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.unlink instead of os.remove
|
Sat, 11 Apr 2015 00:47:09 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.rmtree instead of shutil.rmtree
|
Sat, 11 Apr 2015 00:47:09 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.readdir instead of os.listdir to avoid expensive stat calls
|
Fri, 10 Apr 2015 00:36:42 +0900 |
FUJIWARA Katsunori |
subrepo: use vfs.reljoin instead of os.path.join
|
Fri, 10 Apr 2015 00:36:42 +0900 |
FUJIWARA Katsunori |
subrepo: inline reporelpath into abstractsubrepo._relpath to centralize logic
|
Fri, 10 Apr 2015 00:36:42 +0900 |
FUJIWARA Katsunori |
subrepo: add _relpath field to centralize subrelpath logic
|
Fri, 10 Apr 2015 00:36:42 +0900 |
FUJIWARA Katsunori |
subrepo: add wvfs field to access the working directory via vfs
|
Fri, 10 Apr 2015 00:36:42 +0900 |
FUJIWARA Katsunori |
subrepo: change arguments of abstractsubrepo.__init__ (API)
|
Sun, 05 Apr 2015 15:08:55 -0400 |
Matt Harbison |
subrepo: precisely identify the missing subrepo spec file
|
Wed, 25 Mar 2015 13:55:35 +0900 |
FUJIWARA Katsunori |
subrepo: add bailifchanged to centralize raising Abort if subrepo is dirty
|
Wed, 25 Mar 2015 13:55:32 +0900 |
FUJIWARA Katsunori |
subrepo: add dirtyreason to centralize composing dirty reason message
|
Wed, 18 Mar 2015 23:03:41 -0400 |
Matt Harbison |
subrepo: add basic support to hgsubrepo for the files command
|
Wed, 18 Mar 2015 22:56:41 -0400 |
Matt Harbison |
subrepo: add the parent context to hgsubrepo
|
Thu, 12 Mar 2015 22:59:52 -0400 |
Matt Harbison |
subrepo: replace 'ctx._repo' with 'ctx.repo()'
|
Mon, 09 Mar 2015 22:14:09 +0100 |
Mathias De Maré |
subrepo: add status support for ignored and clean files in git subrepos
|
Tue, 03 Mar 2015 21:31:16 -0500 |
Matt Harbison |
subrepo: only fetch unknown files from git when explicitly requested
|
Tue, 03 Mar 2015 21:24:16 -0500 |
Matt Harbison |
subrepo: always return scmutil.status() from gitsubrepo.status()
|
Tue, 03 Mar 2015 21:17:29 -0500 |
Matt Harbison |
subrepo: explicitly request clean and unknown files in status for git's add
|
Fri, 27 Feb 2015 23:30:42 -0500 |
Matt Harbison |
subrepo: warn when adding already tracked files in gitsubrepo
|
Thu, 26 Feb 2015 15:53:54 -0500 |
Matt Harbison |
subrepo: don't exclude files in .hgignore when adding to git
|
Tue, 24 Feb 2015 08:49:22 +0100 |
Mathias De Maré |
subrepos: support adding files in git subrepos
|
Sun, 15 Feb 2015 17:29:10 -0500 |
Matt Harbison |
subrepo: return only the manifest keys from hgsubrepo.files()
|
Fri, 27 Feb 2015 17:46:03 -0600 |
Matt Mackall |
merge with stable
|
Sun, 08 Feb 2015 00:56:40 -0500 |
Matt Harbison |
subrepo: drop unused pattern initialization in hgsubrepo revert
|
Sat, 07 Feb 2015 21:47:28 -0500 |
Matt Harbison |
revert: display full subrepo output with --dry-run
|
Fri, 06 Feb 2015 20:39:20 -0500 |
Matt Harbison |
subrepo: annotate addremove with @annotatesubrepoerror
|
Tue, 17 Feb 2015 23:20:55 -0800 |
Martin von Zweigbergk |
subrepo: add tests for change/remove conflicts
stable
|
Sun, 01 Feb 2015 14:09:31 +0100 |
Mathias De Maré |
subrepo: add 'cat' support for git subrepos
|
Tue, 27 Jan 2015 20:57:43 -0500 |
Matt Harbison |
subrepo: don't abort in add when non-hg subrepos are present (issue4513)
stable
|
Wed, 21 Jan 2015 21:47:27 +0100 |
Mathias De Maré |
subrepo: correctly add newline for git subrepo diffs
stable
|
Mon, 12 Jan 2015 20:59:17 -0500 |
Matt Harbison |
add: pass options via keyword args
|
Thu, 15 Jan 2015 23:17:12 +0100 |
Angel Ezquerra |
localrepo: remove all external users of localrepo.opener
|
Sun, 28 Dec 2014 23:59:57 +0100 |
Mathias De Maré |
subrepo: add forgotten annotation for reverting git subrepos
|
Sun, 28 Dec 2014 10:42:25 +0100 |
Mathias De Maré |
subrepo: add full revert support for git subrepos
|
Sun, 21 Dec 2014 00:19:10 +0100 |
Angel Ezquerra |
localrepo: introduce shared method to check if a repository is shared
|
Thu, 18 Dec 2014 12:07:03 -0600 |
Matt Mackall |
subrepo: fix git subrepo ui argument
|
Sat, 13 Dec 2014 19:44:55 -0500 |
Matt Harbison |
subrepo: drop the 'ui' parameter to revert()
|
Sat, 13 Dec 2014 19:36:50 -0500 |
Matt Harbison |
subrepo: drop the 'ui' parameter to removefiles()
|
Sat, 13 Dec 2014 19:23:30 -0500 |
Matt Harbison |
subrepo: drop the 'ui' parameter to forget()
|
Sat, 13 Dec 2014 14:26:38 -0500 |
Matt Harbison |
subrepo: drop the 'ui' parameter to cat()
|
Sat, 13 Dec 2014 14:53:46 -0500 |
Matt Harbison |
subrepo: drop the 'ui' parameter to archive()
|
Sat, 13 Dec 2014 22:44:22 -0500 |
Matt Harbison |
subrepo: use 'self.ui' instead of 'self._repo.ui'
|
Sat, 13 Dec 2014 20:43:01 -0500 |
Matt Harbison |
subrepo: reset 'self.ui' to the subrepo copy of 'ui' in the hgsubrepo class
|
Sat, 13 Dec 2014 15:19:38 -0500 |
Matt Harbison |
subrepo: rename the '_ui' member to 'ui'
|
Sat, 13 Dec 2014 15:13:07 -0500 |
Matt Harbison |
subrepo: drop the '_ui' member in the subrepo subclasses
|
Sun, 14 Dec 2014 11:34:51 +0100 |
Mathias De Maré |
subrepo: add revert support without backup for git subrepos
|
Sun, 30 Nov 2014 22:47:53 -0500 |
Matt Harbison |
addremove: automatically process a subrepository's subrepos
|
Mon, 24 Nov 2014 22:27:49 -0500 |
Matt Harbison |
commit: propagate --addremove to subrepos if -S is specified (issue3759)
|
Wed, 26 Nov 2014 16:13:38 -0500 |
Matt Harbison |
subrepo: store the ui object in the base class
|
Wed, 10 Dec 2014 10:32:51 +0100 |
Mathias De Maré |
subrepo: add partial diff support for git subrepos
|
Wed, 10 Dec 2014 08:41:21 +0100 |
Mathias De Maré |
subrepo: extend git version check to 3 digits
|
Wed, 10 Dec 2014 08:33:03 +0100 |
Mathias De Maré |
subrepo: move git version check into a separate method
|
Fri, 28 Nov 2014 20:16:15 +0100 |
Mathias De Maré |
subrepo: add status support for ignored files in git subrepos
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: remove "_getstorehashcachepath" referred by no other code paths
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: replace direct file APIs around "writelines" by "vfs.writelines"
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: replace direct file APIs around "readlines" by "vfs.tryreadlines"
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: add "_cachestorehashvfs" to handle cache store hash files via vfs
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: remove "_calcfilehash" referred by no other code paths
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: replace "_calcfilehash" invocation by "vfs.tryread"
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: replace "os.path.exists" by "exists" via wvfs of the parent
|
Wed, 19 Nov 2014 18:35:14 +0900 |
FUJIWARA Katsunori |
subrepo: avoid redundant "util.makedirs" invocation
|
Sat, 15 Nov 2014 21:36:19 -0500 |
Matt Harbison |
remove: recurse into subrepositories with --subrepos/-S flag
|
Sat, 11 Oct 2014 22:43:14 -0700 |
Martin von Zweigbergk |
subrepo: use separate instances of empty lists in status
|
Tue, 14 Oct 2014 00:52:27 -0500 |
Martin von Zweigbergk |
status: update various other methods to return new class
|
Fri, 03 Oct 2014 11:12:55 -0500 |
Pierre-Yves David |
subrepo: use exchange.pull
|
Sun, 28 Sep 2014 12:47:25 -0700 |
Pierre-Yves David |
subrepo: stop pulling bookmark manually
|
Thu, 25 Sep 2014 01:42:49 -0700 |
Pierre-Yves David |
push: `exchange.push` instead of `localrepo.push`
|
Wed, 01 Oct 2014 01:08:17 +0200 |
Mads Kiilerich |
subrepo: remove superfluous newline from subrepo prompt
|
Fri, 20 Jun 2014 00:42:35 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "close()" execution at the end of "_initrepo()"
|
Fri, 20 Jun 2014 00:21:19 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "close()" execution at the end of "_cachestorehash()"
|
Fri, 20 Jun 2014 00:21:19 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "close()" execution at the end of "_readstorehashcache()"
|
Fri, 20 Jun 2014 00:21:19 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "close()" execution at the end of "_calcfilehash()"
|
Fri, 20 Jun 2014 00:21:19 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "lock.release()" execution at the end of "_cachestorehash()"
|
Fri, 20 Jun 2014 00:21:19 +0900 |
FUJIWARA Katsunori |
subrepo: ensure "lock.release()" execution at the end of "storeclean()"
|
Tue, 27 May 2014 17:41:20 -0700 |
Matt Mackall |
merge with stable
|
Thu, 08 May 2014 19:03:00 +0900 |
FUJIWARA Katsunori |
subrepo: normalize path in the specific way for problematic encodings
stable
|
Thu, 08 May 2014 19:03:00 +0900 |
FUJIWARA Katsunori |
subrepo: avoid sanitizing ".hg/hgrc" in meta data area for non-hg subrepos
stable
|
Thu, 08 May 2014 19:03:00 +0900 |
FUJIWARA Katsunori |
subrepo: make "_sanitize()" take absolute path to the root of subrepo
stable
|
Thu, 08 May 2014 19:03:00 +0900 |
FUJIWARA Katsunori |
subrepo: invoke "_sanitize()" also after "git merge --ff"
stable
|
Thu, 08 May 2014 19:03:00 +0900 |
FUJIWARA Katsunori |
subrepo: make "_sanitize()" work
stable
|
Wed, 07 May 2014 00:13:22 +0200 |
Angel Ezquerra |
subrepo: use subrepo shortid method to generate subrepo diverged promptchoice
|
Wed, 07 May 2014 00:08:20 +0200 |
Angel Ezquerra |
subrepo: add shortid() method to subrepo classes
|
Fri, 14 Mar 2014 21:32:05 -0400 |
Matt Harbison |
cat: support cat with explicit paths in subrepos
|
Fri, 11 Apr 2014 15:38:18 -0400 |
Matt Mackall |
subrepo: check return code for git push (issue4223)
|
Tue, 01 Apr 2014 15:11:19 -0500 |
Matt Mackall |
merge with stable
|
Tue, 01 Apr 2014 02:46:03 +0900 |
FUJIWARA Katsunori |
i18n: fix "% inside _()" problems
stable
|
Tue, 01 Apr 2014 02:46:03 +0900 |
FUJIWARA Katsunori |
i18n: fix "% inside _()" problems
stable
|
Fri, 21 Mar 2014 16:09:17 -0700 |
Siddharth Agarwal |
subrepo: factor out Git version check to add doctests
|
Fri, 21 Mar 2014 17:20:56 -0500 |
Matt Mackall |
merge with stable
|
Thu, 20 Mar 2014 19:39:05 -0700 |
Siddharth Agarwal |
subrepo: add trailing newlines to warnings
stable
|
Thu, 20 Mar 2014 19:38:17 -0700 |
Siddharth Agarwal |
subrepo: convert matched string to integer before comparing Git version
stable
|
Thu, 20 Mar 2014 19:37:01 -0700 |
Siddharth Agarwal |
subrepo: only retrieve the first two components of the Git version
stable
|
Wed, 19 Mar 2014 02:45:14 +0100 |
Mads Kiilerich |
config: set a 'source' in most cases where config don't come from file but code
|
Mon, 03 Feb 2014 18:36:00 -0500 |
Augie Fackler |
itersubrepos: move to scmutil to break a direct import cycle
|
Sun, 24 Nov 2013 02:17:17 +0100 |
Angel Ezquerra |
subrepo: make it possible to update to hidden subrepo revisions
stable
|
Sun, 24 Nov 2013 02:13:00 +0100 |
Angel Ezquerra |
subrepo: remove unnecessary else clause in hgsubrepo._get
stable
|
Sun, 24 Nov 2013 02:10:14 +0100 |
Angel Ezquerra |
subrepo: do not try to get hidden revisions
stable
|
Wed, 13 Nov 2013 15:55:30 +0900 |
FUJIWARA Katsunori |
subrepo: check phase of state in each subrepositories before committing
|
Mon, 25 Nov 2013 16:15:44 -0600 |
Matt Mackall |
merge with stable
|
Mon, 25 Nov 2013 13:50:36 -0600 |
Matt Mackall |
subrepo: sanitize non-hg subrepos
stable
|
Wed, 06 Nov 2013 18:19:04 -0500 |
Augie Fackler |
pathutil: tease out a new library to break an import cycle from canonpath use
|
Fri, 06 Sep 2013 00:38:28 +0200 |
Angel Ezquerra |
merge: let the user choose to merge, keep local or keep remote subrepo revisions
|
Fri, 20 Sep 2013 10:15:37 -0400 |
Augie Fackler |
subrepo: move import of xml.minidom.dom to its own line for check-code
|
Wed, 21 Aug 2013 22:34:04 +0200 |
Angel Ezquerra |
subrepo: make submerge() return the merged substate
|
Wed, 22 May 2013 17:31:43 -0500 |
Matt Mackall |
ui: merge prompt text components into a singe string
|
Thu, 09 May 2013 21:09:58 +0900 |
FUJIWARA Katsunori |
subrepo: open files in 'rb' mode to read exact data in (issue3926)
stable
|
Tue, 16 Apr 2013 22:00:05 -0500 |
pozheg |
subrepo: clone of git sub-repository creates incorrect git branch (issue3870)
|
Thu, 21 Mar 2013 22:09:15 +0100 |
Angel Ezquerra |
archive: raise error.Abort if the file pattern matches no files
|
Wed, 06 Feb 2013 22:54:09 -0500 |
Matt Harbison |
subrepo: chain the original exception to SubrepoAbort
|
Mon, 15 Apr 2013 23:52:57 +0900 |
Yuya Nishihara |
subrepo: fix exception on revert when "all" option is omitted
|
Sat, 16 Feb 2013 01:21:40 +0100 |
Angel Ezquerra |
subrepo: do not push mercurial subrepos whose store is clean
|
Sat, 16 Feb 2013 01:18:53 +0100 |
Angel Ezquerra |
subrepo: implement "storeclean" method for mercurial subrepos
|
Sat, 16 Feb 2013 01:11:20 +0100 |
Angel Ezquerra |
subrepo: introduce storeclean method
|
Sat, 16 Feb 2013 00:07:00 +0100 |
Angel Ezquerra |
subrepo: introduce storeclean helper functions
|
Fri, 29 Mar 2013 19:54:06 -0700 |
Siddharth Agarwal |
pull: list bookmarks before pulling changesets (issue3873)
|
Thu, 31 Jan 2013 01:44:29 +0100 |
Pierre-Yves David |
subrepo: allows to drop courtesy phase sync (issue3781)
stable
|
Tue, 27 Nov 2012 20:56:27 -0500 |
Matt Harbison |
subrepo: use sharepath if available when locating the source repo
stable
|
Wed, 12 Dec 2012 02:38:14 +0100 |
Mads Kiilerich |
subrepos: process subrepos in sorted order
|
Thu, 03 Jan 2013 17:42:25 +0100 |
Angel Ezquerra |
subrepo: make 'in subrepo' string easier to find by external tools
|
Thu, 10 Jan 2013 10:35:37 -0800 |
Brendan Cully |
subrepo: fix python2.4 compatibility after 9aa6bee6e9f9
|
Thu, 03 Jan 2013 17:35:58 +0100 |
Angel Ezquerra |
subrepo: add subrepo property to SubrepoAbort exceptions
|
Thu, 13 Dec 2012 23:37:53 +0100 |
Angel Ezquerra |
subrepo: append subrepo path to subrepo error messages
|
Tue, 04 Dec 2012 11:19:32 -0600 |
Kevin Bullock |
merge with stable
|
Fri, 30 Nov 2012 00:43:55 +0900 |
FUJIWARA Katsunori |
subrepo: add argument to "diff()" to pass "ui" of caller side (issue3712) (API)
stable 2.4.1
|
Tue, 27 Nov 2012 14:58:00 -0800 |
Bryan O'Sullivan |
subrepo: use posixpath when diffing, for consistent paths
|
Wed, 24 Oct 2012 18:45:22 +0200 |
Simon Heimberg |
subrepo: only do clean update when overwrite is set (issue3276)
stable
|
Wed, 10 Oct 2012 01:18:06 +0200 |
Simon Heimberg |
subrepo: subrepo isolation, pass baseui when cloning a new subrepo (issue2904)
stable
|
Sat, 28 Jul 2012 23:28:36 +0200 |
Simon Heimberg |
peer: subrepo isolation, pass repo instead of repo.ui to hg.peer
stable
|
Sat, 29 Sep 2012 20:11:24 +0900 |
FUJIWARA Katsunori |
subrepo: isolate configuration between each repositories in subrepo tree
stable
|
Thu, 04 Oct 2012 16:52:20 +0200 |
Thomas Arendsen Hein |
subrepo, hghave: use "svn --version --quiet" to determine version number
|
Thu, 04 Oct 2012 16:44:28 +0200 |
Thomas Arendsen Hein |
merge with crew-stable
|
Thu, 04 Oct 2012 16:30:40 +0200 |
Thomas Arendsen Hein |
subrepo: setting LC_MESSAGES only works if LC_ALL is empty or unset
stable
|
Tue, 04 Sep 2012 15:50:42 -0700 |
Bryan O'Sullivan |
Merge with crew-stable
|
Tue, 04 Sep 2012 15:46:04 -0700 |
Bryan O'Sullivan |
subrepo: encode unicode path names (issue3610)
stable
|
Wed, 15 Aug 2012 22:38:42 +0200 |
Mads Kiilerich |
fix trivial spelling errors
|
Fri, 13 Jul 2012 21:46:53 +0200 |
Sune Foldager |
peer: introduce peer methods to prepare for peer classes
|
Thu, 12 Jul 2012 10:41:56 +0200 |
Martin Geisler |
merge with crew-stable
|
Thu, 12 Jul 2012 09:58:40 +0200 |
Martin Geisler |
subrepo: add missing newline in Git warning message
stable
|
Sat, 16 Jun 2012 22:34:06 -0400 |
Matt Harbison |
subrepo: propagate matcher to subrepos when archiving
|
Tue, 26 Jun 2012 14:32:20 +0200 |
Thomas Arendsen Hein |
merge with crew-stable
|
Tue, 26 Jun 2012 14:27:33 +0200 |
Thomas Arendsen Hein |
subrepo/svn: make rev number retrieval compatible with svn 1.5 (issue2968)
stable
|
Thu, 21 Jun 2012 15:10:01 +0200 |
Martin Geisler |
merge with stable
|
Tue, 12 Jun 2012 09:31:04 -0400 |
Benjamin Pollack |
subrepo: support Git being named "git.cmd" on Windows (issue3173)
stable
|
Tue, 12 Jun 2012 09:28:55 -0400 |
Benjamin Pollack |
subrepo: warn user if Git is not version 1.6.0 or higher
stable
|
Sun, 20 May 2012 21:11:34 +0300 |
Dov Feldstern |
subrepo: make subrepo.subrepo(<not a subrepo path>) fail
|
Sat, 12 May 2012 15:54:54 +0200 |
Brodie Rao |
cleanup: eradicate long lines
|
Fri, 04 May 2012 14:19:55 +0200 |
Patrick Mezard |
subrepo: do not traceback on .hgsubstate parsing errors
stable
|
Fri, 04 May 2012 14:19:52 +0200 |
Patrick Mezard |
subrepo: ignore blank lines in .hgsubstate (issue3424)
stable
|
Mon, 30 Apr 2012 17:05:19 +0200 |
Patrick Mezard |
subrepo/svn: cache _wcrev() value in merge()
stable
|
Mon, 30 Apr 2012 17:03:15 +0200 |
Patrick Mezard |
subrepo/svn: fix checked out rev number retrieval (issue2968)
stable
|
Thu, 26 Apr 2012 12:13:20 +0200 |
Patrick Mezard |
subrepo/svn: improve error message on missing files
stable
|
Thu, 26 Apr 2012 11:55:07 +0200 |
Patrick Mezard |
subrepo/svn: abort on commit with missing file (issue3029)
stable
|
Fri, 27 Apr 2012 11:02:16 +0200 |
Patrick Mezard |
subrepo: fix default implementation of forget() (issue3404)
stable
|
Thu, 19 Apr 2012 23:36:42 +0200 |
Angel Ezquerra |
revert: show warning when reverting subrepos that do not support revert
stable
|
Mon, 16 Apr 2012 16:50:25 -0500 |
Matt Mackall |
merge with stable
|
Mon, 16 Apr 2012 11:48:15 +0200 |
Patrick Mezard |
archive: make it work with svn subrepos (issue3308)
stable
|
Wed, 28 Mar 2012 11:42:17 +0200 |
Angel Ezquerra |
revert: add support for reverting subrepos without --no-backup and/or --all
|
Wed, 28 Mar 2012 11:42:17 +0200 |
Angel Ezquerra |
revert: add support for reverting subrepos
|
Wed, 29 Feb 2012 17:27:24 -0600 |
Matt Mackall |
merge with stable
|
Wed, 29 Feb 2012 14:24:57 +0100 |
Friedrich Kastner-Masilko |
subrepo: fix for merge inconsistencies
stable
|
Mon, 06 Feb 2012 15:00:08 -0600 |
Matt Mackall |
subrepo: add basestate method
|
Mon, 30 Jan 2012 11:26:20 -0600 |
Matt Mackall |
push: more precise failure check on subrepo push
stable
|
Tue, 17 Jan 2012 19:10:59 -0500 |
David M. Carr |
forget: fix subrepo recursion for explicit path handling
|
Tue, 17 Jan 2012 19:10:58 -0500 |
David M. Carr |
add: fix subrepo recursion for explicit path handling
|
Tue, 10 Jan 2012 13:48:42 -0600 |
Matt Mackall |
subrepo: avoid syncing bookmarks twice on clone (issue3191)
|
Mon, 26 Dec 2011 18:08:20 -0600 |
Matt Mackall |
merge with stable
|
Sat, 24 Dec 2011 19:05:35 +0900 |
FUJIWARA Katsunori |
windows: use normalized path as path to subrepo
stable
|
Thu, 29 Sep 2011 17:20:04 +0200 |
Angel Ezquerra |
push: propagate --new-branch and --ssh options when pushing subrepos
|
Wed, 07 Dec 2011 16:19:39 -0600 |
Matt Mackall |
bookmarks: mark divergent bookmarks with book@pathalias when source in [paths]
|
Sun, 20 Nov 2011 16:06:18 -0600 |
Matt Mackall |
merge with stable
|
Fri, 11 Nov 2011 11:11:11 +1111 |
Eric Roshan Eisner |
subrepo: fix git status false positive (issue3109)
stable
|
Thu, 17 Nov 2011 16:53:17 -0600 |
Matt Mackall |
merge with stable
|
Tue, 15 Nov 2011 02:16:30 +0100 |
Mads Kiilerich |
subrepo: use correct paths for subrepos with ..-relative paths on windows
stable
|
Wed, 09 Nov 2011 19:46:51 -0500 |
David M. Carr |
forget: support forgetting explicit paths in subrepos
|
Wed, 02 Nov 2011 01:17:11 -0400 |
David M. Carr |
add: support adding explicit files in subrepos
|
Mon, 17 Oct 2011 18:01:38 +0200 |
Martin Geisler |
subrepo: abort in hgsubrepo._get if the destination is obstructed
stable
|
Mon, 17 Oct 2011 16:45:19 +0200 |
Martin Geisler |
subrepo: pull revisions on demand when archiving hg subrepos
stable
|
Tue, 11 Oct 2011 21:34:55 -0700 |
Eric Roshan Eisner |
subrepo: fix git branch tracking logic (issue2920)
|
Fri, 07 Oct 2011 17:22:12 -0500 |
Matt Mackall |
merge with stable
|
Sun, 02 Oct 2011 16:41:07 -0500 |
Matt Mackall |
subrepo: fix repo relative path calculation for root directories (issue3033)
stable
|
Sun, 02 Oct 2011 13:02:15 -0500 |
Matt Mackall |
subrepo: improve error message when svn isn't found
|
Thu, 22 Sep 2011 15:15:18 +0200 |
Martin Geisler |
subrepo: try remapping subpaths using the "final" path
|
Thu, 22 Sep 2011 14:39:49 +0200 |
Martin Geisler |
subrepo: refactor state function
|
Fri, 26 Aug 2011 16:08:24 -0500 |
Matt Mackall |
merge with stable
|
Fri, 26 Aug 2011 16:23:35 +0200 |
Mads Kiilerich |
subrepo: fix cloning of repos from urls without slash after host (issue2970)
stable 1.9.2
|
Mon, 01 Aug 2011 10:54:34 -0500 |
Matt Mackall |
merge with stable
|
Thu, 28 Jul 2011 13:28:32 -0400 |
Vasily Titskiy |
subrepo: handle adding svn subrepo with a svn:external file in it (issue2931)
stable
|
Mon, 25 Jul 2011 15:53:22 -0500 |
Augie Fackler |
subrepo: use safehasattr instead of hasattr
|
Tue, 19 Jul 2011 13:43:53 -0500 |
Kevin Bullock |
subrepo: don't commit in subrepo if it's clean
stable
|
Thu, 30 Jun 2011 13:22:12 -0500 |
Eli Carter |
subrepo: correct revision in svn checkout
stable
|
Wed, 29 Jun 2011 16:01:06 -0500 |
Matt Mackall |
subrepos: be smarter about what's an absolute path (issue2808)
stable
|
Fri, 17 Jun 2011 15:22:50 -0500 |
Augie Fackler |
svn subrepos: work around checkout obstructions (issue2752)
|
Fri, 10 Jun 2011 11:43:38 -0500 |
Matt Mackall |
hg: change various repository() users to use peer() where appropriate
|
Wed, 08 Jun 2011 18:24:33 +0200 |
Peter Arrenbrecht |
hg: add opts argument to clone for internal remoteui
|
Wed, 01 Jun 2011 16:42:50 -0500 |
Matt Mackall |
merge with stable
|
Tue, 31 May 2011 19:49:17 -0500 |
Augie Fackler |
subrepo: make stdin for svn a pipe for non-interactive use (issue2759)
stable 1.8.4
|
Tue, 31 May 2011 16:22:04 -0500 |
Regis Desgroppes |
subrepo: svn abort now depends on exit code (issue2833)
stable
|
Tue, 31 May 2011 19:49:17 -0500 |
Augie Fackler |
subrepo: make stdin for svn a pipe for non-interactive use (issue2759)
|
Tue, 31 May 2011 16:22:04 -0500 |
Regis Desgroppes |
subrepo: svn abort now depends on exit code (issue2833)
|
Tue, 31 May 2011 15:28:23 -0500 |
Matt Mackall |
merge with stable
|
Sat, 28 May 2011 11:03:48 -0400 |
Eric Eisner |
subrepo: don't crash when git .hgsubstate is empty (issue2716)
stable
|
Fri, 27 May 2011 11:01:44 +0200 |
Martin Geisler |
subrepo: refactor writestate for clarity
|
Wed, 25 May 2011 08:38:58 -0700 |
Paul Molodowitch |
subrepo: bare git repos considered dirty
|
Mon, 23 May 2011 22:49:10 -0500 |
Matt Mackall |
subrepo: handle local added subrepo case correctly
|
Fri, 13 May 2011 11:04:51 -0500 |
Matt Mackall |
extensions: drop maxlength from enabled and disabled
|
Thu, 12 May 2011 18:35:04 -0500 |
Matt Mackall |
subrepo: use a safer revision check for hg repos
|
Mon, 09 May 2011 17:15:44 +0200 |
Martin Geisler |
subrepo: create subrepos using clone instead of pull
|
Fri, 06 May 2011 14:29:53 +0200 |
Martin Geisler |
merge with stable
|
Fri, 06 May 2011 09:54:06 +0200 |
Adrian Buehlmann |
rename path_auditor to pathauditor
|
Thu, 05 May 2011 16:01:09 +0200 |
Thomas Arendsen Hein |
subrepo: use code from 71ea5b2b9517 only if Python needs it (issue2795)
stable
|
Sat, 30 Apr 2011 09:43:20 -0700 |
Brodie Rao |
url: move URL parsing functions into util to improve startup time
|
Sat, 30 Apr 2011 03:44:31 -0500 |
Matt Mackall |
merge with stable
|
Fri, 04 Mar 2011 14:00:49 +0100 |
Patrick Mezard |
subrepo: handle svn tracked/unknown directory collisions
stable
|
Sat, 30 Apr 2011 03:00:38 -0500 |
Matt Mackall |
subrepo: backout bcc6ed0f6c3b
|
Sat, 30 Apr 2011 02:42:05 -0500 |
Matt Mackall |
merge with stable
|
Fri, 29 Apr 2011 03:34:18 -0500 |
Augie Fackler |
svn subrepo: attempt work around obstructed checkouts (issue2752)
|
Fri, 29 Apr 2011 03:05:48 -0500 |
Augie Fackler |
subrepo: tell Subversion when we are non-interactive (issue2759)
stable
|
Wed, 20 Apr 2011 22:43:31 +0200 |
Adrian Buehlmann |
move path_auditor from util to scmutil
|
Mon, 11 Apr 2011 07:34:40 -0500 |
Augie Fackler |
subrepo: trailing whitespace cleanup
|
Thu, 07 Apr 2011 15:08:15 -0500 |
Matt Mackall |
merge with stable
|
Thu, 07 Apr 2011 12:33:47 +0200 |
Thomas Arendsen Hein |
subrepo: prevent url normalization from removing // in ssh paths (issue2556)
stable
|
Sun, 03 Apr 2011 01:57:17 +0200 |
Adrian Buehlmann |
subrepo: process merge substate in sorted order in submerge()
|
Fri, 25 Mar 2011 22:59:04 -0700 |
Brodie Rao |
subrepos: use url.url when normalizing repo paths
|
Thu, 24 Mar 2011 18:17:49 +0100 |
Martin Geisler |
subrepo: simplify hgsubrepo._get a little
|
Thu, 17 Mar 2011 17:08:13 -0500 |
Matt Mackall |
merge with stable
|
Thu, 17 Mar 2011 16:29:09 -0400 |
Eric Eisner |
subrepo: recognize scp-style paths as git URLs
stable
|
Mon, 14 Mar 2011 00:10:43 +0100 |
David Soria Parra |
bookmarks: separate bookmarks update code from localrepo's pull.
|
Tue, 08 Mar 2011 15:36:56 -0500 |
Eric Eisner |
subrepo: show the source that git pulls
|
Mon, 07 Mar 2011 23:19:17 +0100 |
Patrick Mezard |
merge with stable
|
Mon, 07 Mar 2011 23:02:04 +0100 |
Patrick Mezard |
subrepo: backout 67fbe566eff1, --force requires svn >= 1.5
stable
|
Mon, 07 Mar 2011 15:46:46 -0600 |
Matt Mackall |
merge with stable
|
Mon, 07 Mar 2011 12:03:54 -0500 |
Eric Eisner |
subrepo: don't crash when git repo is missing
stable
|
Fri, 04 Mar 2011 14:11:15 +0100 |
Patrick Mezard |
Merge with stable
|
Fri, 04 Mar 2011 14:00:49 +0100 |
Patrick Mezard |
subrepo: handle svn tracked/unknown directory collisions
stable
|
Wed, 02 Mar 2011 12:19:18 -0500 |
Eric Eisner |
subrepo: show the source that git clones
|
Wed, 23 Feb 2011 10:59:36 -0500 |
Eric Eisner |
subrepo: only attempt pulling from git's origin
stable
|
Wed, 23 Feb 2011 10:17:44 -0500 |
Eric Eisner |
subrepo: disallow all unknown git ref types
stable
|
Tue, 22 Feb 2011 15:11:10 -0500 |
Eric Eisner |
subrepo: expand relative sources for git subrepos
stable
|
Thu, 17 Feb 2011 09:20:44 +0100 |
Martin Geisler |
subrepo: break long line found by check-code
stable
|
Wed, 16 Feb 2011 11:53:48 -0600 |
Kevin Bullock |
subrepos: print short git changeset ids
stable
|
Wed, 09 Feb 2011 10:53:09 +0100 |
Erik Zielke |
subrepos: prompt on conflicts on update with dirty subrepos
|
Wed, 09 Feb 2011 13:37:21 +0100 |
Erik Zielke |
subrepo: remove argument introduced by mistake in c19b9282d3a7
|
Tue, 01 Feb 2011 21:59:07 +0100 |
Patrick Mezard |
Merge with stable
|
Tue, 01 Feb 2011 21:39:28 +0100 |
Patrick Mezard |
subrepo: fix update -C with svn subrepos when cwd != repo.root
stable
|
Tue, 04 Jan 2011 10:42:00 -0600 |
Kevin Bullock |
subrepo: clarify comments in dirty() methods
|
Mon, 31 Jan 2011 13:40:05 +0100 |
Erik Zielke |
subrepo: make update -C clean the working directory for git subrepos
|
Mon, 31 Jan 2011 13:38:00 +0100 |
Martin Geisler |
merge with stable
|
Mon, 31 Jan 2011 13:33:41 +0100 |
Erik Zielke |
subrepo: make update -C clean the working directory for svn subrepos
stable
|
Sat, 22 Jan 2011 16:29:10 +0100 |
Patrick Mezard |
Merge with stable
|
Sat, 22 Jan 2011 16:15:40 +0100 |
Patrick Mezard |
subrepo: compare svn subrepo state to last committed revision
stable
|
Tue, 04 Jan 2011 11:33:47 -0600 |
Kevin Bullock |
subrepo: fix svnsubrepo.dirty() checking of ignoreupdate (issue2499)
|
Mon, 20 Dec 2010 13:59:33 -0500 |
Eric Eisner |
subrepo: basic support for status of git subrepos
|
Mon, 20 Dec 2010 13:59:33 -0500 |
Eric Eisner |
subrepo: fix subrelpath for git subrepos
|
Mon, 20 Dec 2010 13:59:33 -0500 |
Eric Eisner |
subrepo: fix git archive parsing of directories and symfiles
|
Mon, 20 Dec 2010 13:59:33 -0500 |
Eric Eisner |
subrepo: support ignoreupdate in gitsubrepo's dirty()
|
Mon, 20 Dec 2010 13:59:19 -0500 |
Eric Eisner |
subrepo: backout 519ac79d680b
|
Tue, 07 Dec 2010 22:14:43 -0600 |
Kevin Bullock |
mq: update .hgsubstate if subrepos are clean (issue2499)
|
Fri, 17 Dec 2010 13:38:15 +0100 |
Erik Zielke |
subrepo: backout f02d7a562a21
|
Thu, 16 Dec 2010 14:50:36 -0600 |
Matt Mackall |
check-code: catch "except as"
|
Mon, 29 Nov 2010 09:37:23 +0100 |
Erik Zielke |
subrepo: avoids empty commit when .hgsubstate is dirty (issue2403)
|
Tue, 14 Dec 2010 21:58:13 -0500 |
Eric Eisner |
subrepo: use low-level git-diff-index for dirty()
|
Tue, 14 Dec 2010 21:56:43 -0500 |
Eric Eisner |
subrepo: defer determination of git's current branch
|
Tue, 14 Dec 2010 21:56:43 -0500 |
Eric Eisner |
subrepo: incorporate tracking branches into gitbranchmap
|
Tue, 14 Dec 2010 21:53:40 -0500 |
Eric Eisner |
subrepo: use low-level git-for-each-ref command in branchmap
|
Mon, 29 Nov 2010 16:34:10 +0100 |
Martin Geisler |
subrepo: add progress bar support to archive
|
Tue, 14 Dec 2010 18:10:51 -0600 |
Matt Mackall |
subrepo: re-backout 2245fcd0e160
|
Mon, 13 Dec 2010 11:52:52 +0100 |
Martin Geisler |
merge default heads in crew and main
|
Fri, 10 Dec 2010 23:05:48 +0100 |
Benoit Boissinot |
merge with stable
|
Fri, 10 Dec 2010 19:20:11 -0600 |
Matt Mackall |
merge with stable
|
Fri, 10 Dec 2010 19:08:17 -0600 |
Matt Mackall |
subrepo: backed out changeset 2245fcd0e160
stable
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: silence git output when ui.quiet is set
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: show git command with --debug
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: speed up git push logic
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: use subprocess.Popen without the shell
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: treat git error code 1 as success
|
Thu, 09 Dec 2010 16:52:14 -0500 |
Eric Eisner |
subrepo: gitsubrepo should inherit from abstractsubrepo
|
Fri, 10 Dec 2010 01:30:16 +0100 |
Mads Kiilerich |
subrepo: initialize subrepo relative default paths relative to their root
stable
|
Mon, 06 Dec 2010 21:17:27 -0500 |
Eric Eisner |
subrepo: drop arguments unsupported by old git
|
Mon, 06 Dec 2010 21:17:27 -0500 |
Eric Eisner |
subrepo: work around old git's remote naming scheme
|
Mon, 06 Dec 2010 21:17:27 -0500 |
Eric Eisner |
subrepo: use environment variable instead of git commit's --date
|
Mon, 06 Dec 2010 21:17:27 -0500 |
Eric Eisner |
subrepo: parse git status's human-readable output
|
Mon, 06 Dec 2010 21:17:27 -0500 |
Eric Eisner |
subrepo: use subprocess's cwd instead of git's --work-tree
|
Sun, 28 Nov 2010 17:19:23 -0500 |
Eric Eisner |
subrepo: lazily update git's local tracking branches
|
Sun, 28 Nov 2010 15:21:23 -0500 |
Eric Eisner |
subrepo: return both mapping directions from gitbranchmap
|
Sun, 28 Nov 2010 15:03:48 -0500 |
Eric Eisner |
subrepo: strip gitcommand output
|
Sun, 21 Nov 2010 22:00:51 -0500 |
Eric Eisner |
subrepo: lazier git push logic
|
Thu, 18 Nov 2010 19:20:21 -0500 |
Eric Eisner |
subrepo: archive git subrepos
|
Thu, 18 Nov 2010 23:15:13 +0100 |
Patrick Mezard |
Merge with stable
|
Thu, 18 Nov 2010 23:05:10 +0100 |
Patrick Mezard |
subrepo: handle missing subrepo spec file as removed
stable
|
Wed, 17 Nov 2010 21:30:13 +0100 |
Patrick Mezard |
Merge with stable
|
Wed, 17 Nov 2010 21:25:23 +0100 |
Patrick Mezard |
subrepo: prune empty directories when removing svn subrepo
stable
|
Wed, 17 Nov 2010 21:24:36 +0100 |
Patrick Mezard |
subrepo: use subprocess directly to avoid python 2.6 bug
stable
|
Wed, 17 Nov 2010 21:00:47 +0100 |
Patrick Mezard |
subrepo: fix removing read-only svn files on Windows
stable
|
Sun, 14 Nov 2010 18:31:40 -0500 |
Eric Eisner |
subrepo: removing (and restoring) git subrepo state
|
Sun, 14 Nov 2010 18:31:29 -0500 |
Eric Eisner |
subrepo: update and merge works with any git branch
|
Sun, 14 Nov 2010 18:22:33 -0500 |
Eric Eisner |
subrepo: allow git subrepos to push and merge
|
Sun, 14 Nov 2010 18:20:13 -0500 |
Eric Eisner |
subrepo: cloning and updating of git subrepos
|
Sun, 14 Nov 2010 18:15:26 -0500 |
Eric Eisner |
subrepo: support for adding a git subrepo
|
Fri, 05 Nov 2010 15:13:22 +0100 |
Ronny Pfannschmidt |
subrepo: test & fix svn subrepo removal
stable
|
Wed, 27 Oct 2010 00:28:40 +0200 |
Mads Kiilerich |
subrepo: propagate non-default pull/push path to relative subrepos (issue1852)
stable
|
Thu, 21 Oct 2010 10:54:37 +0200 |
Martin Geisler |
subrepo: svnsubrepo._wcrev should return str after 3d6ba8c2b1b8
stable
|
Thu, 21 Oct 2010 03:28:51 -0500 |
Matt Mackall |
subrepo: fix status check on SVN subrepos (issue2445)
stable
|
Wed, 20 Oct 2010 10:13:04 +0200 |
Martin Geisler |
check-code: find trailing whitespace
|
Tue, 19 Oct 2010 03:56:20 +0200 |
Mads Kiilerich |
subrepo: abort instead of pushing/pulling to the repo itself
|
Tue, 19 Oct 2010 03:55:28 +0200 |
Mads Kiilerich |
subrepo: rename relpath to subrelpath and introduce reporelpath
|
Sun, 26 Sep 2010 16:11:04 -0500 |
Brodie Rao |
subrepos: add missing self argument to abstractsubrepo.checknested
|
Mon, 13 Sep 2010 10:33:49 -0300 |
Wagner Bruna |
subrepo: improve lookup error messages
|
Mon, 20 Sep 2010 15:46:17 +0200 |
Martin Geisler |
subrepo: add support for 'hg archive'
|
Mon, 20 Sep 2010 15:44:30 +0200 |
Martin Geisler |
subrepo: introduce files and filedata methods for subrepo classes
|
Mon, 13 Sep 2010 13:09:31 +0200 |
Martin Geisler |
incoming: recurse into subrepositories with --subrepos/-S flag
|
Mon, 13 Sep 2010 13:09:26 +0200 |
Martin Geisler |
outgoing: recurse into subrepositories with --subrepos/-S flag
|
Mon, 13 Sep 2010 13:09:20 +0200 |
Martin Geisler |
add: recurse into subrepositories with --subrepos/-S flag
|
Fri, 10 Sep 2010 23:53:49 +0200 |
Martin Geisler |
subrepo: handle diff with working copy
|
Fri, 10 Sep 2010 22:52:00 +0200 |
Patrick Mezard |
subrepos: handle diff nodeids in subrepos, not before
|
Tue, 07 Sep 2010 16:34:07 +0200 |
Martin Geisler |
subrepos: add function for iterating over ctx subrepos
|
Fri, 03 Sep 2010 12:58:51 +0200 |
Martin Geisler |
diff: recurse into subrepositories with --subrepos/-S flag
|
Fri, 03 Sep 2010 12:58:51 +0200 |
Martin Geisler |
status: recurse into subrepositories with --subrepos/-S flag
|
Fri, 03 Sep 2010 12:58:51 +0200 |
Martin Geisler |
localrepo: add auditor attribute which knows about subrepos
|
Fri, 27 Aug 2010 13:03:57 +0200 |
Martin Geisler |
subrepo: use [0-9] instead of [\d] in svn subrepo regex
|
Thu, 19 Aug 2010 13:25:46 +0200 |
Martin Geisler |
subrepos: handle backslashes in subpaths
|
Thu, 15 Jul 2010 18:10:05 +0200 |
Martin Geisler |
subrepos: support remapping of .hgsub source paths
|
Thu, 15 Jul 2010 14:11:14 +0200 |
Martin Geisler |
Merge with stable
|
Thu, 15 Jul 2010 13:24:02 +0200 |
Mads Kiilerich |
subrepo: docstrings
stable
|
Wed, 14 Jul 2010 20:25:31 +0200 |
Martin Geisler |
subrepos: let caller specify a filename for SVN commands
|
Wed, 14 Jul 2010 20:25:31 +0200 |
Martin Geisler |
subrepo: add abstract superclass for subrepo classes
|
Wed, 30 Jun 2010 23:56:35 -0500 |
Matt Mackall |
subrepo: correctly handle update -C with modified subrepos (issue2022)
stable
|
Tue, 29 Jun 2010 17:30:42 -0500 |
Matt Mackall |
subrepo: fix recording of + in .hgsubstate (issue2217)
stable
|
Sun, 27 Jun 2010 18:20:49 -0500 |
Matt Mackall |
subrepo: fix silent push failure for SVN (issue2241)
stable
|
Fri, 07 May 2010 14:19:14 -0500 |
Matt Mackall |
subrepo: fix 2.5ism in url parsing
|
Sat, 01 May 2010 23:05:22 +0200 |
Edouard Gomez |
subrepo: print paths relative to upper repo root for push/pull/commit
|
Sat, 01 May 2010 23:05:22 +0200 |
Edouard Gomez |
subrepo: print pushing url
|
Sat, 01 May 2010 23:05:19 +0200 |
Edouard Gomez |
subrepo: normalize path part of URLs so that pulling subrepos from webdir works
|
Sat, 01 May 2010 15:15:35 -0500 |
Matt Mackall |
Merge with stable
|
Fri, 30 Apr 2010 18:32:18 -0500 |
Matt Mackall |
subrepo: propagate and catch push failures
stable
|
Mon, 19 Apr 2010 17:00:02 -0500 |
Matt Mackall |
Merge with stable
|
Sun, 18 Apr 2010 14:20:08 -0700 |
Brett Cannon |
subrepo: fix repo root path handling in svn subrepo
stable
|
Mon, 15 Mar 2010 18:36:11 +0100 |
Martin Geisler |
Merge with stable
|
Sun, 14 Mar 2010 00:28:10 +0100 |
Edouard Gomez |
subrepo: fix hgrc paths section during subrepo pulling
stable
|
Sat, 13 Mar 2010 19:57:52 +0100 |
Martin Geisler |
subrepo: wrap long line
|
Sat, 13 Mar 2010 17:02:41 +0100 |
Benoit Boissinot |
merge with stable
|
Fri, 12 Mar 2010 01:23:35 +0100 |
Edouard Gomez |
subrepo: print subrepo pulling URL
|
Fri, 12 Mar 2010 01:23:35 +0100 |
Benoit Boissinot |
subrepo: keep ui and hgrc in sync when creating new repo
stable
|
Fri, 12 Mar 2010 01:23:35 +0100 |
Edouard Gomez |
subrepo: forward the push to argument into _abssource
stable
|
Fri, 19 Feb 2010 02:23:38 +0100 |
Benoit Boissinot |
i18n: mark more strings for translation
stable
|
Tue, 09 Feb 2010 18:32:57 +0100 |
David Soria Parra |
subrepo: make sure that the source path is stripped
stable
|
Sat, 06 Feb 2010 19:14:37 +0100 |
Saint Germain |
subrepo: change default path in hgrc of subrepo after cloning
|
Sat, 06 Feb 2010 10:23:18 +0100 |
David Soria Parra |
subrepo: correct copyright
|
Sun, 31 Jan 2010 18:02:16 +0100 |
Benoit Boissinot |
subrepo: fix errors reported by pylint
|
Thu, 21 Jan 2010 13:26:26 +0100 |
Patrick Mezard |
subrepo: handle svn externals and meta changes (issue1982)
|
Thu, 21 Jan 2010 15:13:40 +0100 |
Patrick Mezard |
subrepo: svn xml output is much easier to parse
|
Thu, 21 Jan 2010 15:13:03 +0100 |
Patrick Mezard |
subrepo: make svn use C locale for portability
|
Tue, 19 Jan 2010 22:45:09 -0600 |
Matt Mackall |
Merge with stable
|
Tue, 19 Jan 2010 22:20:08 -0600 |
Matt Mackall |
Update license to GPLv2+
stable
|
Fri, 15 Jan 2010 21:32:53 +0100 |
Benoit Boissinot |
merge with stable
|
Fri, 15 Jan 2010 21:08:04 +0100 |
Benoit Boissinot |
subrepo: fix merging of already merged subrepos (issue1986)
stable
|
Sat, 09 Jan 2010 23:12:21 +0100 |
Jens Bäckman |
subrepo: fix typo in help text
|
Sat, 02 Jan 2010 16:42:00 +0100 |
Patrick Mezard |
subrepo: force en_US.UTF-8 locale when calling svn
|
Sat, 02 Jan 2010 16:03:25 +0100 |
Patrick Mezard |
subrepo: normalize svn output line-endings
|
Fri, 01 Jan 2010 18:46:24 +0100 |
Martin Geisler |
subrepo: mark string for translation and fix case
|
Thu, 31 Dec 2009 13:16:03 -0600 |
Augie Fackler |
subrepo: Subversion support
|
Thu, 31 Dec 2009 17:10:03 -0600 |
Augie Fackler |
subrepo: add table-based dispatch for subrepo types
|
Thu, 31 Dec 2009 16:30:34 -0600 |
Augie Fackler |
subrepo: load from a context where the subrepo exists
|
Thu, 31 Dec 2009 17:25:46 -0600 |
Matt Mackall |
subrepo: fix includes support in .hgsub
|
Mon, 14 Dec 2009 15:02:02 -0600 |
Matt Mackall |
Merge with -stable
|
Mon, 14 Dec 2009 15:01:13 -0600 |
Matt Mackall |
subrepo: add default path to new clones
stable
|
Wed, 09 Dec 2009 14:33:22 -0600 |
Augie Fackler |
subrepo: document necessary methods for a subrepo class
|
Sun, 08 Nov 2009 10:29:52 -0600 |
Matt Mackall |
submerge: properly deal with overwrites
|
Sun, 08 Nov 2009 10:24:18 -0600 |
Matt Mackall |
subrepo: add more debugging output, lose _ markers
|
Sat, 07 Nov 2009 16:31:43 -0600 |
Matt Mackall |
subrepo: do a linear update when appropriate
|
Sat, 07 Nov 2009 16:30:42 -0600 |
Matt Mackall |
subrepo: notice dirty subrepo states when merging
|
Sat, 07 Nov 2009 16:29:49 -0600 |
Matt Mackall |
subrepo: add some debug output to submerge
|
Sat, 07 Nov 2009 14:09:16 -0600 |
Matt Mackall |
subrepo: more robust split for .hgsubstate parsing
|
Wed, 30 Sep 2009 21:42:51 -0500 |
Matt Mackall |
Merge with -stable
|
Wed, 30 Sep 2009 18:47:33 -0500 |
Matt Mackall |
subrepo: add auto-pull for merge
|
Thu, 23 Jul 2009 20:44:26 +0200 |
Dirkjan Ochtman |
merge with crew-stable
|
Wed, 22 Jul 2009 17:53:23 -0500 |
Matt Mackall |
subrepo: use '/' for joining non-local paths
|
Sat, 04 Jul 2009 14:18:15 +0100 |
Abderrahim Kitouni |
subrepo: use hg.repository instead of creating localrepo directly
|
Tue, 07 Jul 2009 17:26:20 +0200 |
Martin Geisler |
filemerge, subrepo: correct indention
|
Sun, 21 Jun 2009 01:13:19 +0200 |
Simon Heimberg |
ui: extract choice from prompt
|
Wed, 01 Jul 2009 13:55:24 -0500 |
Matt Mackall |
subrepo: audit subrepo paths
|
Fri, 19 Jun 2009 14:28:29 +0800 |
Dongsheng Song |
Fix warning: Seen unexpected token "%"
|
Mon, 15 Jun 2009 02:46:20 -0500 |
Matt Mackall |
subrepo: basic push support
|
Mon, 15 Jun 2009 02:45:38 -0500 |
Matt Mackall |
subrepo: add update/merge logic
|
Mon, 15 Jun 2009 02:45:38 -0500 |
Matt Mackall |
commit: recurse into subrepositories
|
Mon, 15 Jun 2009 02:45:38 -0500 |
Matt Mackall |
subrepo: introduce basic state parsing
|