Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is git remote update the equivalent of git fetch?

share|improve this question

1 Answer

up vote 35 down vote accepted

Yes and no. git remote update fetches from all remotes, not just one.

Without looking at the code to see if remote update is just a shell script (possible) it, basically, runs fetch for each remote. git fetch can be much more granular.

share|improve this answer
1  
You can configure which remotes to fetch when running git remote update, see git-remote manpage. – Jakub NarÄ™bski Dec 7 '09 at 0:56
Incidentally, git remote is not a shell script, but it spawns git fetch during a remote update. – mipadi Dec 7 '09 at 20:13
Is there an equivalent git fetch command options for a git remote update? – tuler Mar 7 '12 at 0:25
2  
@tuler Yes: it is git fetch --all – LoKi Jun 16 '12 at 7:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.