1. 20 2月, 2006 1 次提交
  2. 19 2月, 2006 2 次提交
  3. 18 2月, 2006 7 次提交
  4. 17 2月, 2006 4 次提交
  5. 16 2月, 2006 8 次提交
  6. 15 2月, 2006 9 次提交
    • J
      Detect misspelled pathspec to git-add · 45e48120
      Junio C Hamano 提交于
      This is in the same spirit as an earlier patch for git-commit.
      It does an extra ls-files to avoid complaining when a fully
      tracked directory name is given on the command line (otherwise
      --others restriction would say the pathspec does not match).
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      45e48120
    • J
      ls-files --error-unmatch pathspec error reporting fix. · 6becd7da
      Junio C Hamano 提交于
      Earlier patch mistakenly used prefix_len when it meant
      prefix_offset.  The latter is to strip the leading directories
      when run from a subdirectory.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      6becd7da
    • J
      Merge branch 'kh/svn' · e8a1a11d
      Junio C Hamano 提交于
      * kh/svn:
        git-svnimport: -r adds svn revision number to commit messages
      e8a1a11d
    • J
      Merge branch 'jc/commit' · 756e3ee0
      Junio C Hamano 提交于
      * jc/commit:
        commit: detect misspelled pathspec while making a partial commit.
        combine-diff: diff-files fix (#2)
        combine-diff: diff-files fix.
      756e3ee0
    • J
      Merge branch 'jc/rebase' · 9b6c66e0
      Junio C Hamano 提交于
      * jc/rebase:
        rebase: allow a hook to refuse rebasing.
      9b6c66e0
    • J
      Merge branch 'ra/email' · 709fb393
      Junio C Hamano 提交于
      * ra/email:
        send-email: Add --cc
        send-email: Add some options for controlling how addresses are automatically added to the cc: list.
      709fb393
    • J
      rebase: allow rebasing onto different base. · e646c9c8
      Junio C Hamano 提交于
      This allows you to rewrite history a bit more flexibly, by
      separating the other branch name and new branch point.  By
      default, the new branch point is the same as the tip of the
      other branch as before, but you can specify where you graft the
      rebased branch onto.
      
      When you have this ancestry graph:
      
                A---B---C topic
               /
          D---E---F---G master
      
      	$ git rebase --onto master~1 master topic
      
      would rewrite the history to look like this:
      
      	      A'\''--B'\''--C'\'' topic
      	     /
          D---E---F---G master
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e646c9c8
    • J
      checkout: fix dirty-file display. · 504fe714
      Junio C Hamano 提交于
      When we refused to switch branches, we incorrectly showed
      differences from the branch we would have switched to.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      504fe714
    • J
      commit: detect misspelled pathspec while making a partial commit. · bba319b5
      Junio C Hamano 提交于
      When you say "git commit Documentaiton" to make partial commit
      for the files only in that directory, we did not detect that as
      a misspelled pathname and attempted to commit index without
      change.  If nothing matched, there is no harm done, but if the
      index gets modified otherwise by having another valid pathspec
      or after an explicit update-index, a user will not notice
      without paying attention to the "git status" preview.
      
      This introduces --error-unmatch option to ls-files, and uses it
      to detect this common user error.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      bba319b5
  7. 14 2月, 2006 8 次提交
  8. 13 2月, 2006 1 次提交