Unity3D 之 Shell更新svn出现冲突

export SVN="svn --username 你的svn用户名 --password 你的svn密码 --no-auth-cache --non-interactive"
export projectPath=需要更新svn的工程目录
  
$SVN revert -R $projectPath
$SVN up $projectPath
$SVN resolve --accept theirs-conflict -R  $projectPath
$SVN resolved -R $projectPath


你可能感兴趣的:(Unity3D 之 Shell更新svn出现冲突)