You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
290 B
9 lines
290 B
3 months ago
|
# Change to the src/images directory, or exit if the directory doesn't exist
|
||
|
Set-Location -Path ./src/images/ -ErrorAction Stop
|
||
|
|
||
|
# Add all files to svn, including ignored files and forced additions
|
||
|
svn add . --no-ignore --force
|
||
|
|
||
|
# Commit the changes with a message
|
||
|
svn ci -m "版本更新"
|