1
0

post-checkout 442 B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. # ignore non-branch checkouts
  3. if [[ "$3" != "1" ]]; then
  4. exit
  5. fi
  6. # skip if upstream is already set
  7. if git rev-parse --verify --quiet '@{u}' > /dev/null 2>&1; then
  8. exit
  9. fi
  10. # use upstream/HEAD if it exists, otherwise origin/HEAD
  11. if git show-ref --verify --quiet refs/remotes/upstream/HEAD; then
  12. git branch --set-upstream-to refs/remotes/upstream/HEAD
  13. else
  14. git branch --set-upstream-to refs/remotes/origin/HEAD
  15. fi