1. 11 2月, 2010 4 次提交
  2. 09 2月, 2010 8 次提交
  3. 08 2月, 2010 1 次提交
    • R
      archive: simplify archive format guessing · fe12d8e8
      René Scharfe 提交于
      The code to guess an output archive's format consumed any --format
      options and built a new one.  Jonathan noticed that it does so in an
      unsafe way, risking to overflow the static buffer fmt_opt.
      
      Change the code to keep the existing --format options intact and to only
      add a new one if a format could be guessed based on the output file name.
      The new option is added as the first one, allowing the existing ones to
      overrule it, i.e. explicit --format options given on the command line win
      over format guesses, as before.
      
      To simplify the code further, format_from_name() is changed to return the
      full --format option, thus no potentially dangerous sprintf() calls are
      needed any more.
      Reported-by: NJonathan Nieder <jrnieder@gmail.com>
      Signed-off-by: NRene Scharfe <rene.scharfe@lsrfire.ath.cx>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      fe12d8e8
  4. 06 2月, 2010 2 次提交
  5. 01 2月, 2010 2 次提交
  6. 30 1月, 2010 2 次提交
  7. 29 1月, 2010 1 次提交
  8. 25 1月, 2010 1 次提交
    • J
      Merge branch 'maint' of git://git.spearce.org/git-gui into maint · b30ccd75
      Junio C Hamano 提交于
      * 'maint' of git://git.spearce.org/git-gui:
        git-gui: work from the .git dir
        git-gui: Fix applying a line when all following lines are deletions
        git-gui: Correct file_states when unstaging partly staged entry
        git-gui: Fix gitk for branch whose name matches local file
        git-gui: Keep repo_config(gui.recentrepos) and .gitconfig in sync
        git-gui: handle really long error messages in updateindex.
        git-gui: Add hotkeys for "Unstage from commit" and "Revert changes"
        git-gui: Makefile: consolidate .FORCE-* targets
      b30ccd75
  9. 24 1月, 2010 6 次提交
  10. 23 1月, 2010 1 次提交
    • J
      ignore duplicated slashes in make_relative_path() · 288123f0
      Junio C Hamano 提交于
      The function takes two paths, an early part of abs is supposed to match
      base; otherwise abs is not a path under base and the function returns the
      full path of abs.  The caller can easily confuse the implementation by
      giving duplicated and needless slashes in these path arguments.
      
      Credit for test script, motivation and initial patch goes to Thomas Rast.
      A follow-up fix (squashed) is by Hannes.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      288123f0
  11. 22 1月, 2010 3 次提交
  12. 21 1月, 2010 9 次提交