Anchor
...
...
Top
Git
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Website:
https://git-scm.com
...
Top
Visual Studio Code
Learning to code is intimidating, so set yourself up for success with a tool built for you. Visual Studio Code is a free coding editor that helps you start coding quickly. Use it to code in any programming language, without switching editors. Visual Studio Code has support for many languages, including Python, Java, C++, JavaScript, and more.
...
Video includes installing VS Code, installing Git, using Git Bash to set user.name and user.email, and connecting VS Code to an Azure DevOps repository.
...
Top
Visual Studio
Website:
https://visualstudio.microsoft.com/
...
Branching and Merging Strategy in Git for SSIS Projects
...
Top
Opening a cloned repository from Azure directly to VS Code
...
Top
Opening a cloned repository from inside VS Code
...
Top
Error? SSL certificate problem: self-signed certificate in certificate chain
git config --global http.sslVerify false
...
Top
Configure Git Username and Email Address
...
Open the command line.
Set your username:
git config --global user.name "Your Name"
Set your email address:
git config --global user.email "Your.Name@catalisgov.com"
...
Top
Sample VS Code Extensions
...