1

I have multiple remote references, and there's no "git remote prune --all" so I attempted "git remote show | xargs -n 1 git remote prune" but it doesn't work. I'm running msysgit 1.7.4. I know it works in Linux (well "git remote show | xargs git remote prune" does) but I just get no output in msysgit, and I know it's not working as I can still prune after running that.

"git remote show | xargs -n 1 echo git remote prune" shows me it's compiling the "git remote prune public1" commands correctly.

Any ideas?

Sh33p
  • 13
  • 5

1 Answers1

0

I always do git remote update -p

Stefan Näwe
  • 3,040
  • 1
  • 18
  • 19