Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 809 Bytes

2012-04-05-poll-svn-server-for-changes-with-git.md

File metadata and controls

27 lines (20 loc) · 809 Bytes
layout title date author tags modified_time thumbnail blogger_id blogger_orig_url
post
Poll svn server for changes with git clone
2012-04-05T15:45:00.006Z
Tim Abell
bash
git
svn
2012-04-10T18:49:19.544Z
tag:blogger.com,1999:blog-5082828566240519947.post-5257654522615465429

Just for convenience, paste this in a git bash window:

while true; do date; echo "Polling svn server..."; git svn fetch;echo "Sleeping."; sleep 300; done

Then just refresh your favourite git log viewer.

Get the gist: poll-svn.sh gist

That's all folks!