1. 07 6月, 2008 1 次提交
    • J
      Merge branch 'maint' · e919cb30
      Junio C Hamano 提交于
      * maint:
        git-for-each-ref.txt: minor improvements
        name-rev: Fix segmentation fault when using --all
      e919cb30
  2. 06 6月, 2008 2 次提交
  3. 05 6月, 2008 7 次提交
  4. 04 6月, 2008 5 次提交
  5. 03 6月, 2008 6 次提交
  6. 02 6月, 2008 18 次提交
  7. 01 6月, 2008 1 次提交
    • S
      Make "git-remote rm" delete refs acccording to fetch specs · 7ad2458f
      Shawn O. Pearce 提交于
      A remote may be configured to fetch into tracking branches that
      don't match its name.  A user may have created a remote by hand
      that will fetch to a different tracking branch namespace:
      
        [remote "alt"]
          url = git://repo.or.cz/alt-git.git
          fetch = refs/heads/*:refs/remotes/origin/*
      
      When deleting remote alt we should clean up the refs whose names
      start with "refs/remotes/origin/", even though the remote itself
      was named alt by the user.
      
      To avoid deleting refs used by another remote we only clear refs
      that are unique to this remote.  This prevents `git prune rm alt`
      from removing the refs used by say origin if alt was just using a
      different URL for the same repository.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      7ad2458f