问题
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 ?
回答1:
In Linux use timeout command:
timeout 10m git svn fetch
来源:https://stackoverflow.com/questions/52214581/timeout-setting-on-git-svn-fetch-operation