mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-23 23:29:02 +01:00
Added init_git.ps1
This commit is contained in:
parent
1a66fad0fa
commit
33c3699d22
12
init_git.ps1
Normal file
12
init_git.ps1
Normal file
@ -0,0 +1,12 @@
|
||||
#
|
||||
|
||||
|
||||
$UserName = read-host "Your full name: "
|
||||
$UserEmail = read-host "Your email address: "
|
||||
$UserEditor = read-host "Your favorite editor (nano, vi, emacs): "
|
||||
|
||||
git config --global user.name $UserName
|
||||
git config --global user.email $UserEmail
|
||||
git config --global core.editor $UserEditor
|
||||
echo "Done."
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user