Skip to content
Snippets Groups Projects
  1. Jun 20, 2012
    • Pierre-Yves David's avatar
      rebase: do not add second parent to rebased changeset (drop detach option) (BC) · 50f434510da6
      Pierre-Yves David authored
      Rebase now behaves as if --detach was always passed. Non-merges are
      rebased as non-merges, regardless of their parent being an ancestor of
      the destination. Merges will usually be rebased as merges unless both of
      their parents are ancestors of the destination, or one of their parents
      is pruned when rebased.
      
      This only alters the behavior of rebase when using the --source/--rev
      options. --detach option is deprecated.
      
      All test changes were carefully validated.
      50f434510da6
  2. May 13, 2012
    • Matt Harbison's avatar
      revset: add a predicate for finding converted changesets · 0eb522625eb2
      Matt Harbison authored
      This selects changesets added because of repo conversions.  For example
      
          hg log -r "converted()"      # all csets created by a convertion
          hg log -r "converted(rev)"   # the cset converted from rev in the src repo
      
      The converted(rev) form is analogous to remote(id), where the remote repo is
      the source of the conversion.  This can be useful for cross referencing an old
      repository into the current one.
      
      The source revision may be the short changeset hash or the full hash from the
      source repository.  The local identifier isn't useful.  An interesting
      ramification of this is if a short revision is specified, it may cause more
      than one changeset to be selected.  (e.g. converted(6) matches changesets with
      a convert_revision field of 6e..e and 67..0)
      
      The convert.hg.saverev option must have been specified when converting the hg
      source repository for this to work.  The other sources automatically embed the
      converted marker.
      0eb522625eb2
  3. Jun 20, 2012
  4. Jun 18, 2012
  5. Jun 16, 2012
  6. Jun 18, 2012
  7. Jun 14, 2012
  8. Jun 15, 2012
  9. Jun 14, 2012
  10. Jun 16, 2012
    • kiilerix's avatar
      test-alias: adapt for Windows · 91284af53508
      kiilerix authored
      The test used 'echo' to test '!' style aliases. On Windows 'echo' is handled
      by cmd and thus behaves very differently from the 'normal' echo command.
      
      The simple workaround used here for using the same alias on all platforms
      is to use 'printf' instead. Msys 'printf' will also handle sh quoting and
      escaping in cmd.
      
      Environment variable expansion with sh syntax is handled by launching sh.
      91284af53508
  11. Jun 15, 2012
  12. Jun 14, 2012
  13. May 28, 2012
    • Elifarley Callado Coelho Cruz's avatar
      acl: use of "!" prefix in user or group names · c49cf339b5bb
      Elifarley Callado Coelho Cruz authored
      The "!" prefix allows you to prevent anyone except a given user or group to push
      changesets in a given branch or path.
      
      This patch enables a use case suggested by a user (Julien Bonnet):
      There's a branch that only a given user (or group) should be able to push to,
      and you don't want to restrict access to any other branch that may be created.
      
      With the "!" prefix, you simply deny access to "!givenuser" (or "!@givengroup").
      c49cf339b5bb
  14. Jun 08, 2012
  15. Jun 09, 2012
    • Adrian Buehlmann's avatar
      test-commit: remove extra cd .. · d1a0ac9b6b8a
      Adrian Buehlmann authored
      This specific cd .. leaves the base directory of the test ($TESTTMP).
      
      Removing it avoids that test artifacts (e.g. files) are created
      outside of the base directory.
      d1a0ac9b6b8a
  16. May 29, 2012
  17. Jun 13, 2012
  18. Jun 01, 2012
  19. Jun 06, 2012
    • Olav Reinert's avatar
      help: fix extension commands help in keyword search · 87882c8753d4
      Olav Reinert authored
      This patch fixes the synopsis shown for extension commands in keyword search
      results. A previous patch erroneously caused the extension synopsis to be shown
      instead.
      
      Test cases for keyword search are missing, so I added a one.
      87882c8753d4
  20. Jun 12, 2012
Loading