forked from MortenPedholt/Powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VisualStudioSetup.txt
40 lines (30 loc) · 1.43 KB
/
VisualStudioSetup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/////List installed extensions###
code --extensions-dir --list-extensions
/////Install visual studio code extensions.
code --install-extension ms-vscode.powershell
code --install-extension ms-mssql.mssql
code --install-extension robertohuertasm.vscode-icons
code --install-extension msazurermtools.azurerm-vscode-tools
code --install-extension ms-vscode.azurecli
code --install-extension vscode-icons-team.vscode-icons
code --install-extension wilfriedwoivre.arm-params-generator
/////unInstall visual studio code extensions.
code --uninstall-extension msazurermtools.azurerm-vscode-tools
code --uninstall-extension ms-vscode.powershell
code --uninstall-extension ms-mssql.mssql
code --uninstall-extension robertohuertasm.vscode-icons
code --uninstall-extension vscode-icons-team.vscode-icons
code --uninstall-extension wilfriedwoivre.arm-params-generator
/////Setup icons
///// restart VSC after installation of VScode extension
Press F1 --> preferences: file icon Theme --> vscode icons
/////switch Language for file
CTRL + K and then press M
/////install Git
explorer https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe
/////Clone repository from Github
CTRL + Shift + P --> git: Clone --> Enter repository you would like to Clone --> enter destination.
/////Configure Git
Open "Git CMD" --> run the following commands:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"