0.1.0 • Published 8 years ago

git-remote-protocol v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

git-remote-protocol npm version Build status Coverage status

Convert an HTTPS Git remote URL to SSH and the opposite.

Installation

npm install git-remote-protocol

Usage

const gitRemote = require('git-remote-protocol');

gitRemote.toSSH('https://github.com/torvalds/linux.git')
// git@github.com:torvalds/linux.git
gitRemote.toHTTPS('git@bitbucket.org:mirror/linux.git')
// https://bitbucket.org/mirror/linux.git

License

MIT