前言

批处理是公司开发必备,减少我们手动操作的工作量。前提得搭建一个SVN Server,这个自行百度!

Checkout

@echo off
echo ==========================================
echo =         Aladdin Version 1.0"           =
echo ==========================================

svn checkout https://svn.vxw.online/svn/dxw.test/

pause

Pull

@echo off
echo ==========================================
echo =         Aladdin Version 1.0"           =
echo ==========================================

set workDir="dxw.test"

@echo updating from Server
svn update %workDir%

pause

svn

Commit

@echo off
echo ==========================================
echo =         Aladdin Version 1.0"            =
echo ==========================================

set workDir="dxw.test"
::检查更新的文件
for /f "tokens=1,* delims= " %%i in ('svn status %workDir%') do (
    echo %%i %%j > svnstatus.txt
    setlocal enabledelayedexpansion
    find "@" svnstatus.txt > nul
    if !errorlevel! equ 0 (
        if %%i == ? (svn add -q "%%j@")
        if %%i == ! (svn del -q "%%j@")
    ) else (
        if %%i == ? (svn add -q "%%j")
        if %%i == ! (svn del -q "%%j")
    )
    endlocal
)

set /p text= Input Commit Message:

svn commit -q -m "[AutoCommit] %text%" %workDir%
echo "Commit OK"

pause

更多补充待续…

Git下载

https://github.com/dingxiaowei/SvnBatDemo.git