diff --git a/README.md b/README.md index 727caa74..27ead6f6 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ The following PowerShell scripts can be found in the Scripts/ subfolder: * [download.ps1](Scripts/download.ps1) - downloads the file/directory from the given URL * [empty-dir.ps1](Scripts/empty-dir.ps1) - empties the given directory * [exe_info.ps1](Scripts/exe_info.ps1) - prints basic information of the given executable file +* [init-git.ps1](Scripts/init-git.ps1) - initializes the Git configuration * [list-empty-dirs.ps1](Scripts/list-empty-dirs.ps1) - lists empty subfolders in a directory tree * [list-unused-files.ps1](Scripts/list-unused-files.ps1) - lists unused files in a directory tree * [list-cmdlets.ps1](Scripts/list-cmdlets.ps1) - lists the PowerShell cmdlets diff --git a/Scripts/init_git.ps1 b/Scripts/init-git.ps1 similarity index 82% rename from Scripts/init_git.ps1 rename to Scripts/init-git.ps1 index 5a29ed66..c96b8db6 100755 --- a/Scripts/init_git.ps1 +++ b/Scripts/init-git.ps1 @@ -1,7 +1,7 @@ #!/snap/bin/powershell -# Syntax: ./init_git.ps1 -# Description: initializes Git +# Syntax: ./init-git.ps1 +# Description: initializes the Git configuration # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 @@ -14,7 +14,7 @@ try { git config --global user.name $UserName git config --global user.email $UserEmail git config --global core.editor $UserEditor - echo "Done. Git has been initialized." + echo "Done." exit 0 } catch { Write-Error $Error[0] } exit 1