10 lines
327 B
PowerShell
10 lines
327 B
PowerShell
|
|
$path = [Environment]::GetFolderPath("MyDocuments")
|
|
cd $path
|
|
Remove-Item 'VAT-Software' -Recurse -Force -Confirm:$false
|
|
git clone https://git.iop.cz/vat/software.git VAT-Software
|
|
cd VAT-Software
|
|
git config credential.helper store
|
|
git config user.email "vat_emp@dalkove-ovladace.cz"
|
|
git config user.name "vat_emp"
|