上传指定后缀名文件

    svn st | grep swift | cut -d' ' -f8- > targets.txt
    svn ci -m "comments" --targets targets.txt

上传新增和修改文件

    svn st | grep ^[A\|M] | cut -d' ' -f8- > targets.txt
    svn ci -m "comments" --targets targets.txt

相关文章:

  • 2021-12-10
  • 2022-12-23
  • 2021-05-27
  • 2021-05-18
  • 2021-12-18
  • 2022-12-23
  • 2021-11-19
猜你喜欢
  • 2022-02-07
  • 2021-12-14
  • 2021-09-10
  • 2021-12-17
  • 2021-11-26
  • 2021-11-30
  • 2022-01-15
相关资源
相似解决方案