Deploy your application using a local Git repository or online Git repositories like GitHub and BitBucket if you are using a cloud based deployment solution.
Continuous deployments are supported.
Change to the root directory for your application by typing this:
git cd {path to your root directory}
For example: C:\Users\Username\Application1\root
Then create an empty Git repository or reinitialize an existing one:
git init
For more syntax options Click Here
git add .
git commit -m "initial commit"
git remote add websites https://cloudsitename.scm.gear.host/cloudsitename.git
git push websites master
The term cloudsitename is the name of your CloudSite.
Your username will be $cloudsitename and then your publishing password. This information can be viewed from the CloudSite Publish tab.
Want to edit or suggest changes to this content? You can edit and submit changes to this article using GitHub.