Update move-with-hist.ps1: add script description

This commit is contained in:
aybe
2020-10-17 01:17:45 +02:00
parent 96171fdde6
commit 801eea4d59

View File

@@ -1,4 +1,8 @@
param (
# NOTE: for internal use only
# This script moves a source file to a target file in repository,
# but ensures its history is preserved, i.e. commits, author date.
param (
[Parameter(Mandatory=$true)][string]$source,
[Parameter(Mandatory=$true)][string]$target
)