Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. To help improve pull request workflow.
  2. Install ruby gem:
  3. * gem install atlassian-stash
  4. Configure atlassian-stash:
  5. Enter your stash login details and the stash URL:
  6. * stash configure
  7.  
  8. creates a .stashconfig.yml file in your home directory, content should include:
  9.  
  10. * stash_url: [stash url]
  11. * username: [stash username]
  12. * password: [stash password]
  13.  
  14.  
  15. Add remote "upstream" eg:
  16. git remote add upstream [upstream url]
  17.  
  18. Run the stash pull request command:
  19. * stash pull-request master upstream/master
  20.  
  21.  
  22. Add an alias to your .bash_profile:
  23. alias stash-pull-request="stash pull-request master upstream/master"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement