1. 30 4月, 2016 5 次提交
  2. 26 4月, 2016 1 次提交
  3. 24 4月, 2016 1 次提交
  4. 15 4月, 2016 23 次提交
  5. 14 4月, 2016 1 次提交
  6. 06 4月, 2016 1 次提交
  7. 04 4月, 2016 3 次提交
  8. 01 4月, 2016 1 次提交
    • S
      git-send-pack: fix --all option when used with directory · c6777563
      Stanislav Kolotinskiy 提交于
      When using git send-pack with --all option
      and a target repository specification ([<host>:]<directory>),
      usage message is being displayed instead of performing
      the actual transmission.
      
      The reason for this issue is that destination and refspecs are being set
      in the same conditional and are populated from argv. When a target
      repository is passed, refspecs is being populated as well with its value.
      This makes the check for refspecs not being NULL to always return true,
      which, in conjunction with the check for --all or --mirror options,
      is always true as well and returns usage message instead of proceeding.
      
      This ensures that send-pack will stop execution only when --all
      or --mirror switch is used in conjunction with any refspecs passed.
      Signed-off-by: NStanislav Kolotinskiy <stanislav@assembla.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      c6777563
  9. 31 3月, 2016 3 次提交
  10. 30 3月, 2016 1 次提交