1. 23 2月, 2007 8 次提交
  2. 22 2月, 2007 8 次提交
    • S
      Include git-gui credits file in dist. · 4917d2a6
      Shawn O. Pearce 提交于
      The Makefile for the git-gui subproject will fail to execute if run
      outside of a git.git directory, such as when building from a .tar.gz
      or .tar.bz2.  This is because it is looking for the credits file,
      which was created but omitted from the tarball by the toplevel
      Makefile.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      4917d2a6
    • S
      e4a15f40
    • J
      fe6e0eec
    • J
      git-apply: guess correct -p<n> value for non-git patches. · 3e8a5db9
      Junio C Hamano 提交于
      This enhances the third point in the previous commit.  When
      applying a non-git patch that begins like this:
      
      	--- 2.6.orig/mm/slab.c
      	+++ 2.6/mm/slab.c
      	@@ -N,M +L,K @@@
      	...
      
      and if you are in 'mm' subdirectory, we notice that -p2 is the
      right option to use to apply the patch in file slab.c in the
      current directory (i.e. mm/slab.c)
      
      The guess function also knows about this pattern, where you
      would need to use -p0 if applying from the top-level:
      
      	--- mm/slab.c
      	+++ mm/slab.c
      	@@ -N,M +L,K @@@
      	...
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3e8a5db9
    • J
      git-apply: notice "diff --git" patch again · 9987d7c5
      Junio C Hamano 提交于
      Earlier one that tried to be too consistent with GNU patch by
      not stripping the leading path when we _know_ we are in a
      subdirectory and the patch is relative to the toplevel was a
      mistake.  This fixes it.
      
       - No change to behaviour when it is run from the toplevel of
         the repository.
      
       - When run from a subdirectory to apply a git-generated patch,
         it uses the right -p<n> value automatically, with or without
         --index nor --cached option.
      
       - When run from a subdirectory to apply a randomly generated
         patch, it wants the right -p<n> value to be given by the
         user.
      
      The second one is a pure improvement to correct inconsistency
      between --index and non --index case, compared with 1.5.0.  The
      third point could be further improved to guess what the right
      value for -p<n> should be by looking at the patch, but should be
      a topic of a separate patch.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9987d7c5
    • J
      Merge branch 'maint' · 24706531
      Junio C Hamano 提交于
      * maint:
        Use gunzip -c over gzcat in import-tars example.
        git-gui: Don't crash in citool mode on initial commit.
        git-gui: Remove TODO list.
        git-gui: Include browser in our usage message.
        git-gui: Change summary of git-gui.
        git-gui: Display all authors of git-gui.
        git-gui: Use mixed path for docs on Cygwin.
        git-gui: Correct crash when saving options in blame mode.
        git-gui: Expose the browser as a subcommand.
        git-gui: Create new branches from a tag.
        git-gui: Prefer version file over git-describe.
        git-gui: Print version on the console.
        git-gui: More consistently display the application name.
        git-gui: Permit merging tags into the current branch.
        git-gui: Basic version check to ensure git 1.5.0 or later is used.
        git-gui: Refactor 'exec git subcmd' idiom.
      24706531
    • J
      Merge branch 'master' of git://repo.or.cz/git-gui into maint · 5bac4a67
      Junio C Hamano 提交于
      * 'master' of git://repo.or.cz/git-gui:
        git-gui: Don't crash in citool mode on initial commit.
        git-gui: Remove TODO list.
        git-gui: Include browser in our usage message.
        git-gui: Change summary of git-gui.
        git-gui: Display all authors of git-gui.
        git-gui: Use mixed path for docs on Cygwin.
        git-gui: Correct crash when saving options in blame mode.
        git-gui: Expose the browser as a subcommand.
        git-gui: Create new branches from a tag.
        git-gui: Prefer version file over git-describe.
        git-gui: Print version on the console.
        git-gui: More consistently display the application name.
        git-gui: Permit merging tags into the current branch.
        git-gui: Basic version check to ensure git 1.5.0 or later is used.
        git-gui: Refactor 'exec git subcmd' idiom.
      5bac4a67
    • M
      Use gunzip -c over gzcat in import-tars example. · c750da25
      Michael Loeffler 提交于
      Not everyone has gzcat or bzcat installed on their system, but
      gunzip -c and bunzip2 -c perform the same task and are available
      if the user has installed gzip support or bzip2 support.
      Signed-off-by: NMichael Loeffler <zvpunry@zvpunry.de>
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      c750da25
  3. 21 2月, 2007 24 次提交