Reputation: 1872
I have setup Orchard CMS via Azure one click install. Pulled the code initially by running:
git remote add azure https://<username>@localgitdeployment.scm.azurewebsites.net:443/localgitdeployment.git
I then did a pull with (keeping it simple):
git pull azure master
So I have the repo locally, but with the CMS, I can add modules, etc... via the admin panel and that updates on Azure, but when I try to do a pull or fetch using same as above, it says I am up to date, but the new modules do not show up locally.
I have no branches setup as I am only using the 'master' branch.
So curious, where am I going wrong with this?
Thanks much.
Upvotes: 1
Views: 75
Reputation: 8491
After the files are changed in your Azure Web App, you need to commit these changes by executing ‘git commit’ command. Then you could pull these changes to your local. Steps below are for your reference.
git add .
git commit -m addnewfiles
Upvotes: 2