├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── add-remote.plugin.zsh ├── add-remote.sh ├── git-add-remote ├── git-add-upstream └── tests ├── helper.sh ├── suite.clitest.md └── test /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/README.md -------------------------------------------------------------------------------- /add-remote.plugin.zsh: -------------------------------------------------------------------------------- 1 | add-remote.sh -------------------------------------------------------------------------------- /add-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/add-remote.sh -------------------------------------------------------------------------------- /git-add-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/git-add-remote -------------------------------------------------------------------------------- /git-add-upstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/git-add-upstream -------------------------------------------------------------------------------- /tests/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/tests/helper.sh -------------------------------------------------------------------------------- /tests/suite.clitest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/tests/suite.clitest.md -------------------------------------------------------------------------------- /tests/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0-graveyard/git-add-remote/HEAD/tests/test --------------------------------------------------------------------------------