]> source.dussan.org Git - jgit.git/commit
Add remote command to JGit CLI 53/59553/5
authorKaloyan Raev <kaloyan.r@zend.com>
Mon, 6 Jan 2014 12:40:47 +0000 (14:40 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 11 Dec 2015 21:54:48 +0000 (22:54 +0100)
commite23521f0d9040d49dead2ce6fbfab6bde3b7b2c6
treefd07c73c9a2e982ff97d6e853a34c231d653c3c4
parent6dfad98d7237236661414f96eb302ed1013a2ecc
Add remote command to JGit CLI

Supported subcommands are:
 - <none> (lists available remotes)
 - add
 - remove
 - set-url
 - update

Supported options are:
 --verbose
 --push
 --prune

Bug: 481316
Change-Id: I57c34ed6daabb7d308bc383b17c1ef4af433e714
Signed-off-by: Kaloyan Raev <kaloyan.r@zend.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
16 files changed:
org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/RemoteTest.java [new file with mode: 0644]
org.eclipse.jgit.pgm/META-INF/services/org.eclipse.jgit.pgm.TextBuiltin
org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/internal/CLIText.properties
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Remote.java [new file with mode: 0644]
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/AbstractRemoteCommandTest.java [new file with mode: 0644]
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RemoteAddCommandTest.java [new file with mode: 0644]
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RemoteDeleteCommandTest.java [new file with mode: 0644]
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RemoteListCommandTest.java [new file with mode: 0644]
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RemoteSetUrlCommandTest.java [new file with mode: 0644]
org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteAddCommand.java [new file with mode: 0644]
org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteListCommand.java [new file with mode: 0644]
org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteRemoveCommand.java [new file with mode: 0644]
org.eclipse.jgit/src/org/eclipse/jgit/api/RemoteSetUrlCommand.java [new file with mode: 0644]
org.eclipse.jgit/src/org/eclipse/jgit/transport/URIish.java