zoukankan      html  css  js  c++  java
  • 自动化批处理部署

    转自己:http://www.cnblogs.com/doupip/archive/2012/02/10/2345708.html

    @echo off
     rem 显示部分
     @echo             注 意 事 项
     @echo ************************************************************************
     @echo 可以精简并通过计划任务来制定自动执行,运行前请检查下面目录:
     @echo.  
     @echo     1.svn_bin 为安装TortoiseSVN客户端的可执行程序目录
     @echo     2.svn_work 为更新项目文件的目录
     @echo.
     @echo WIN7或WINVista或WIN2008的用户请用管理员身份运行
     @echo ************************************************************************
     
     rem 路径变量,请在此处按实际修改,最后面不要带斜杠
     @set svn_bin=D:\Program Files\TortoiseSVN\bin
     @set svn_work=E:\SVN
     
     rem 判断可执行文件及项目文件目录是否正确
     @if not exist "%svn_bin%\TortoiseProc.exe" (
         echo.
         echo error: 请确认TortoiseSVN客户端目录正确?
         echo 目前定义的是:%svn_bin%
         echo.
         pause & exit 1
         )
     if not exist "%svn_work%\.svn" (
         echo.
         echo error: 请确认SVN项目文件目录正确?
         echo 目前定义的是:%svn_work%
         echo.
         pause & exit 2
         )
     
     rem 显示操作菜单
     :menu
     echo.
     echo ☆☆☆请选择数字后按回车☆☆☆
     echo.
     echo 1.SVN全目录更新
     echo.
     echo 2.打开某某项目SVN(QA专用)
     echo.
     echo 3.打开某某项目网站SVN (QA专用)
     echo.
     echo 4.SVN全目录日志
     echo.
     echo 0.退出
     echo.
     set choice=
     set /p choice=请选择对应数字输入:
     if not "%choice%"=="" choice=%choice:~0,1%
     if /i  "%choice%"=="1" goto start1
     if /i  "%choice%"=="2" goto start2
     if /i  "%choice%"=="3" goto start3
     if /i  "%choice%"=="4" goto start4
     if /i  "%choice%"=="0" goto exit
     echo 选择无效,请重新输入...
     echo.
     goto :menu
     
     :start1
     cls
     echo SVN目录更新
     echo.
     rem 更新snv
     "%svn_bin%"\TortoiseProc.exe/command:update /path:"%svn_work%" /notempfile /closeonend:4
     echo 已完成,返回主菜单
     goto :menu
     
     :start2
     cls
     echo 打开SVN某某项目目录
     echo.
     rem 打开某某项目,固定写死
     explorer /e,"%svn_work%\Testing\Videocomm"
     goto :menu
     
     :start3
     cls
     echo 打开SVN某某项目网站目录
     echo.
     explorer /e,"%svn_work%\Testing\Trunk\"
     goto :menu
     
     :start4
     cls
     echo 打开SVN全目录日志
     echo.
     "%svn_bin%"\TortoiseProc.exe/command:log /path:"%svn_work%" /notempfile /closeonend:0
     goto :menu

    这中间是随便写了几个操作,可根据实际需要自行增减,代码行应该可以精简,哪位同学闲来无事的可以试试

    附svn的一些命令行说明

    命令描述
    :about 显示关于对话框。如果没有给命令也会显示。
    :log 打开日志对话框,/path 指定了显示日志的文件或目录,另外还有三个选项可以设置: /startrev:xxx/endrev:xxx/strict
    :checkout 打开检出对话框,/path指定了目标路径,而/url制定了检出的URL。
    :import 打开导入对话框,/path 指定了数据导入路径。
    :update 将工作副本的/path更新到HEAD,如果给定参数/rev,就会弹出一个对话框询问用户需要更新到哪个修订版本。为了防止指定修订版本号/rev:1234的对话框,需要选项/nonrecursive/ignoreexternals
    :commit 打开提交对话框,/path 指定了目标路径或需要提交的文件列表,你也可以使用参数 /logmsg 给提交窗口传递预定义的日志信息,或者你不希望将日志传递给命令行,你也可以使用 /logmsgfile:pathpath 指向了保存日志信息的文件。为了预先填入bug的ID(如果你设置了集成bug追踪属性),你可以使用/bugid:"the bug id here"完成这个任务。
    :add /path的文件添加到版本控制 。
    :revert 恢复工作副本的本地修改,/path说明恢复哪些条目。
    :cleanup 清理中断和终止的操作,将工作副本的/path解锁。
    :resolve /path指定文件的冲突标示为解决,如果给定/noquestion,解决不会向用户确认操作。
    :repocreate /path创建一个版本库。
    :switch 打开选项对话框。/path 指定目标目录。
    :export /path的工作副本导出到另一个目录,如果/path指向另一个未版本控制目录,对话框会询问要导出到/path的URL。
    :merge Opens the merge dialog. The /path specifies the target directory. For merging a revision range, the following options are available: /fromurl:URL, /revrange:string. For merging two repository trees, the following options are available: /fromurl:URL, /tourl:URL, /fromrev:xxx and /torev:xxx. These pre-fill the relevant fields in the merge dialog.
    :mergeall Opens the merge all dialog. The /path specifies the target directory.
    :copy Brings up the branch/tag dialog. The /path is the working copy to branch/tag from. And the /url is the target URL. You can also specify the /logmsg switch to pass a predefined log message to the branch/tag dialog. Or, if you don't want to pass the log message on the command line, use /logmsgfile:path, where path points to a file containing the log message.
    :settings 打开设置对话框。
    :remove 从版本控制里移除/path中的文件。
    :rename 重命名/path的文件,会在对话框中询问新文件,为了防止一个步骤中询问相似文件,传递/noquestion
    :diff Starts the external diff program specified in the TortoiseSVN settings. The /path specifies the first file. If the option /path2 is set, then the diff program is started with those two files. If /path2 is omitted, then the diff is done between the file in /path and its BASE. To explicitly set the revision numbers use /startrev:xxx and /endrev:xxx. If /blame is set and /path2 is not set, then the diff is done by first blaming the files with the given revisions.
    :showcompare

    Depending on the URLs and revisions to compare, this either shows a unified diff (if the option unified is set), a dialog with a list of files that have changed or if the URLs point to files starts the diff viewer for those two files.

    The options url1, url2, revision1 and revision2 must be specified. The options pegrevision, ignoreancestry, blame and unified are optional.

    :conflicteditor Starts the conflict editor specified in the TortoiseSVN settings with the correct files for the conflicted file in /path.
    :relocate 打开重定位对话框,/path指定了重定位的工作副本路径。
    :help 打开帮助文件
    :repostatus 打开为修改检出对话框,/path 指定了工作副本目录。
    :repobrowser Starts the repository browser dialog, pointing to the URL of the working copy given in /path or /path points directly to an URL. An additional option /rev:xxx can be used to specify the revision which the repository browser should show. If the /rev:xxx is omitted, it defaults to HEAD. If /path points to an URL, the /projectpropertiespath:path/to/wc specifies the path from where to read and use the project properties.
    :ignore /path中的对象加入到忽略列表,也就是将这些文件添加到 svn:ignore 属性。
    :blame

     /path 选项指定的文件打开追溯对话框。

    如果设置了 /startrev  /endrev 选项,不会显示询问追溯范围对话框,直接使用这些选项中的版本号。

    如果设置了 /line:nnn 选项,TortoiseBlame 会显示指定行数。

    也支持 /ignoreeol/ignorespaces  /ignoreallspaces 选项。

    :cat /path指定的工作副本或URL的文件保存到/savepath:path,修订版本号在/revision:xxx,这样可以得到特定修订版本的文件。
    :createpatch 创建/path下的补丁文件。
    :revisiongraph 显示/path目录下的版本变化图。
    :lock Locks a file or all files in a directory given in /path. The 'lock' dialog is shown so the user can enter a comment for the lock.
    :unlock Unlocks a file or all files in a directory given in /path.
    :rebuildiconcache Rebuilds the windows icon cache. Only use this in case the windows icons are corrupted. A side effect of this (which can't be avoided) is that the icons on the desktop get rearranged. To suppress the message box, pass /noquestion.
    :properties

    如果想在进度对话框执行完毕后自动关闭,而又不必设置永久性的参数,可以传递/closeonend参数。
     /closeonend:0 不自动关闭对话框
     /closeonend:1 如果没发生错误则自动关闭对话框
     /closeonend:2 如果没发生错误和冲突则自动关闭对话框
     /closeonend:3 如果没有错误、冲突和合并,会自动关闭
     /closeonend:4 如果没有错误、冲突和合并,会自动关闭
     下面的列表列出了所有可以使用TortoiseProc.exe访问的命令,就像上面的描述,必须使用/command:abcd的形式,在列表中,因为节省空间的关系省略了/command的前缀。

    Examples (which should be entered on one line):
     TortoiseProc.exe /command:commit
                      /path:"c:\svn_wc\file1.txt*c:\svn_wc\file2.txt"
                      /logmsg:"test log message" /closeonend:0
     
     TortoiseProc.exe /command:update /path:"c:\svn_wc\" /closeonend:0
     
     TortoiseProc.exe /command:log /path:"c:\svn_wc\file1.txt"
                      /startrev:50 /endrev:60 /closeonend:0

  • 相关阅读:
    [Abp vNext 源码分析]
    C# 结合 PInvoke 对接 IP 摄像头的笔记
    Abp vNext 自定义 Ef Core 仓储引发异常
    [Abp vNext 源码分析]
    [Abp vNext 源码分析]
    [Abp vNext 源码分析]
    网站SEO中服务器优化的三个问题
    用香港服务器还是国内服务器好
    租用香港服务器最重要的三个问题
    如何选择服务器操作系统
  • 原文地址:https://www.cnblogs.com/PatrickLee/p/2746526.html
Copyright © 2011-2022 走看看