Skip to content
Snippets Groups Projects
  1. Sep 15, 2014
  2. Aug 31, 2014
  3. May 14, 2014
  4. Aug 31, 2014
  5. May 30, 2014
  6. Aug 31, 2014
  7. May 14, 2014
  8. Aug 31, 2014
  9. Aug 28, 2014
    • Katsunori FUJIWARA's avatar
      templater: add "diff" template function · 40ce05b5
      Katsunori FUJIWARA authored
      "diff" allows to embed changes in the target revision into template
      output, even if the command itself doesn't take "--patch" option
      
      Combination of "[committemplate]" configuration and "diff" template
      function can achieve the feature like issue231 ("option to have diff
      displayed in commit editor buffer")
      
          http://bz.selenic.com/show_bug.cgi?id=231
      
      For example, templating below can be used to add each "diff" output
      lines "HG: " prefix::
      
            {splitlines(diff) % 'HG: {line}\n'}
      
      This patch implements "diff" not as "a template keyword" but as "a
      template function" to take include/exclude patterns at runtime.
      
      It allows to specify target files of command (by -I/-X command line
      options) and "diff" separately.
      40ce05b5
  10. Sep 16, 2014
  11. Mar 16, 2014
  12. Sep 12, 2014
  13. Sep 15, 2014
  14. Sep 12, 2014
  15. Sep 15, 2014
  16. Sep 13, 2014
  17. Sep 12, 2014
  18. Sep 02, 2014
  19. Sep 10, 2014
  20. Sep 11, 2014
  21. Aug 19, 2014
  22. Sep 11, 2014
  23. Sep 10, 2014
  24. May 26, 2014
  25. Sep 10, 2014
  26. Aug 07, 2014
  27. Sep 05, 2014
    • Durham Goode's avatar
      dirstate: add exception when calling setparent without begin/end (API) · d259322a
      Durham Goode authored
      Adds an exception when calling dirstate.setparent without having first called
      dirstate.beginparentchange. This will prevent people from writing code that
      modifies the dirstate parent without considering the transactionality of their
      change.
      
      This will break third party extensions that call setparents.
      d259322a
Loading