In my last post I showed how to add a folder of scripts to GitHub using Visual Studio Code.
You can do it with Azure Data Studio as well. Itβs exactly the same steps!
The blog post could end here but read on for some screen shots π
Follow the previous post for details of setting up a new GitHub account
Create a repository in GitHub
Open the folder in Azure Data Studio with CTRL K CTRL O (Or File β> Open Folder)
Click on the Source Control icon or CTRL + SHIFT + G and then Initialize Repository
Choose the folder
Write a commit message
Say yes to the prompt. Press CTRL + β to open the terminal
Navigate to the scripts folder. (I have a PSDrive set up to my Git folder)
Set-Location GIT:\\ADS-Scripts\
and copy the code from the GitHub page after ββ¦or push an existing repository from the command lineβ
and run it
and there are your scripts in GitHub
Make some changes to a script and it will go muddy brown
and then write a commit message. If you click on the file name in the source control tab then you can see the changes that have been made, that are not currently tracked
Commit the change with CTRL + ENTER and then click the roundy-roundy icon (seriously anyone know its name ?) click yes on the prompt and your changes are in GitHub as well π
Realistically, you can use the previous post to do this with Azure Data Studio as it is built on top of Visual Studio Code but I thought it was worth showing the steps in Azure Data Studio.
Happy Source Controlling