Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3.  
  4. rm -rf gitlab alice bob || true
  5.  
  6. mkdir gitlab
  7. cd gitlab
  8. git init --bare
  9. cd ..
  10.  
  11. git clone gitlab alice
  12. cd alice
  13. git config user.name Alice
  14. cd ..
  15.  
  16. git clone gitlab bob
  17. cd bob
  18. git config user.name Bob
  19. cd ..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement