Skip to content

Instantly share code, notes, and snippets.

@Boettner-eric
Created March 1, 2023 19:14
Show Gist options
  • Save Boettner-eric/232a4f202bd4a898f02c8bf59c8fcb6b to your computer and use it in GitHub Desktop.
Save Boettner-eric/232a4f202bd4a898f02c8bf59c8fcb6b to your computer and use it in GitHub Desktop.
Push to a branch and open the browser to that branch
#!/usr/bin/env zsh
command=$(git push 2>&1)
result=$(echo $command | grep -Eo '(http|https)://[a-zA-Z0-9./?=_%:-]*' | tr -d '\n')
open -a Arc $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment