⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 check-modified.py

📁 linux subdivision ying gai ke yi le ba
💻 PY
字号:
#!/usr/bin/python
#
# USAGE: check-modified.py FILE_OR_DIR1 FILE_OR_DIR2 ...
#
# prints out the URL associated with each item
#

import sys
import os
import os.path
import svn.util
import svn.client
import svn.wc

def usage():
  print "Usage: " + sys.argv[0] + " FILE_OR_DIR1 FILE_OR_DIR2\n"
  sys.exit(0)

def run(files):

  svn.util.apr_initialize()
  pool = svn.util.svn_pool_create(None)

  for f in files:
    dirpath = fullpath = os.path.abspath(f)
    if not os.path.isdir(dirpath):
      dirpath = os.path.dirname(dirpath)
  
    adm_baton = svn.wc.svn_wc_adm_open(None, dirpath, False, True, pool)

    try:
      entry = svn.wc.svn_wc_entry(fullpath, adm_baton, 0, pool)

      if svn.wc.svn_wc_text_modified_p(fullpath, False, adm_baton, pool):
        print "M      %s" % f
      else:
        print "       %s" % f
    except:
      print "?      %s" % f

    svn.wc.svn_wc_adm_close(adm_baton)

  svn.util.svn_pool_destroy(pool)
  svn.util.apr_terminate()        

if __name__ == '__main__':
  run(sys.argv[1:])
    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -