Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. ▸ Multiple apps in git remotes
  2. ▸ Usage: --remote prod
  3. ▸ or: --app selflearning
  4. ▸ Your local git repository has more than 1 app referenced in git remotes.
  5. ▸ Because of this, we can't determine which app you want to run this command
  6. ▸ against.
  7. ▸ Specify the app you want with --app or --remote.
  8. ▸ Heroku remotes in repo:
  9. ▸ selflearning (heroku)
  10. ▸ selflearning (prod)
  11. ▸ selflearning (stage)
  12.  
  13. [remote "heroku"]
  14. url = https://git.heroku.com/selflearning.git
  15. fetch = +refs/heads/*:refs/remotes/heroku/*
  16. [branch "custom_connection"]
  17. remote = origin
  18. merge = refs/heads/custom_connection
  19. [remote "prod"]
  20. url = https://git.heroku.com/selflearning.git
  21. fetch = +refs/heads/*:refs/remotes/prod/*
  22. [remote "stage"]
  23. url = https://git.heroku.com/selflearning.git
  24. fetch = +refs/heads/*:refs/remotes/stage/*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement