Merge pull request #39 from nwinkler/bitbucket-server

Atlassian Stash has been renamed to Bitbucket Server
This commit is contained in:
David O'Trakoun 2016-07-12 11:01:21 -04:00 committed by GitHub
commit d0244ac3a2
2 changed files with 2 additions and 4 deletions

View file

@ -71,7 +71,7 @@ git-open can automatically guess the corresponding repository page for remotes
- gitlab.com
- Gitlab custom hosted (see below)
- bitbucket.org
- Atlassian Stash
- Atlassian Bitbucket Server (formerly _Atlassian Stash_)
#### Gitlab support
@ -110,4 +110,3 @@ http://opensource.org/licenses/MIT
- **2016-07-11** - Changelog started (readme formatting and installation
instructions updated)

View file

@ -68,7 +68,7 @@ elif grep -q bitbucket <<<$giturl; then
providerUrlDifference="src/${rev}/${git_pwd}"
branch="?at=${branch}"
# Atlassian Stash
# Atlassian Bitbucket Server
elif grep -q "/scm/" <<<$giturl; then
re='(.*)/scm/(.*)/(.*)\.git'
if [[ $giturl =~ $re ]]; then
@ -112,4 +112,3 @@ esac
# open it in a browser
$open "$giturl" &> /dev/null
exit 0