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
I have a submodule build initialized at the root of my dir and I'm trying to deploy with this conf
activate :deploy do |deploy|
deploy.method = :git
deploy.strategy = :submodule
deploy.remote = 'origin'
deploy.branch = 'master'
end
And the output is
## Deploying via git to remote="origin" and branch="master"
Already on 'master'
No stash found.
Can't deploy! Please resolve conflicts. Then process to manual commit and push on master branch.
If I look at the source, I see that stashes are involved. What exactly is stash used for? If I have previously updated everything and root and submodule repos are clean then there is nothing to stash and pop. Am I right or I'm getting something fundamentally wrong?
The text was updated successfully, but these errors were encountered:
I have a submodule build initialized at the root of my dir and I'm trying to deploy with this conf
And the output is
If I look at the source, I see that stashes are involved. What exactly is stash used for? If I have previously updated everything and root and submodule repos are clean then there is nothing to stash and pop. Am I right or I'm getting something fundamentally wrong?
The text was updated successfully, but these errors were encountered: