I want to call 'svn update' programmatically using Python
I have implemented svn-checkout using the below code and is it is working fine.
cmd = svn_path + ' co ' + repopath + ' ' + directory_path
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
stdout, stderr = p.communicate()
For check-out used co command but, couldn't find commands for update the svn repository.
Please help to find the update command.