aboutsummaryrefslogblamecommitdiffstats
path: root/git-request-get
blob: c5d3c3d9db929a50161fd3e36a9a2433d3af6684 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                       
#!/bin/bash
set -eux

# 1. Collect URL of the incoming repo
# 2. Check it is in our remotes
# 3. If it isn't, add it
# 4. Fetch the remote
# 5. Create new branch

mapfile REMOTES < <(git remote -v|awk '{print $1,$2;}')