Ionic Pro: Ionic View doesn't show me the real www directory content

Hi all,

I explain :

I’m trying to use Ionic View app to show my app to a customer. I processed like this :slight_smile:

. ionic link -> I choose my app id -> private and public keys are created and .git directory is created
. git push ionic master -> error :

error: src refspec master does not match any.  
error: failed to push some refs to 'ssh://xxxxx.com/project.git'

So I try to create a new Ionic v1 project with a blank starter and I replace the new www directory with my app. Now git push works well but when I launch my app with Ionic View I have a blank starter :face_with_raised_eyebrow:

If I try with an other starter type it’s the same : I see the original www content, not the new one. I don’t understand.

Thank by advance for your help, and thank you to Ionic team for your great work !

What is your app’s ionic info output?

Ionic Pro is a hosted and closed source service, so there is not much we, the community, can help you with, sorry. Check these:

You can - and should - contact support at http://ionicframework.com/support#support

Thank you for your answer.

I found the solution, I didn’t use Git correctly. If it can help someone :

. git add -A to add all files to Git // repeat this command each time you create new files
. git commit -am “Message”
. git push ionic master

Before this Git ignored modifications, so it stayed on the initial project.

1 Like