You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This script initializes a git repository in the folder specified, adds the files, makes the first commit, adds the remote repository, and pushes the repository.
# All you have to do is pass in the full path to the folder and the url of the repository
param(
[Parameter(Mandatory=$true)]$path,
[Parameter(Mandatory=$true)]$url
)
# Set the current working directory to the folder path