Venkatesh
Venkatesh

Reputation: 179

Timeout setting on git svn fetch operation

I need to set the timeout on git svn fetch command. The fetch process should be timed out if it takes more than specific time interval(say 10 mins).Is it possible do like this in git command itself ? Or any other possible way to do this ?

Upvotes: 2

Views: 1997

Answers (1)

phd
phd

Reputation: 94706

In Linux use timeout command:

timeout 10m git svn fetch

Upvotes: 6

Related Questions