Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickCommand.java1
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/StatusCommand.java2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java5
3 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickCommand.java
index 1b8441170c..192a377678 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickCommand.java
@@ -252,6 +252,7 @@ public class CherryPickCommand extends GitCommand<CherryPickResult> {
* @param prefix
* including ":"
* @return {@code this}
+ * @since 3.1
*/
public CherryPickCommand setReflogPrefix(final String prefix) {
this.reflogPrefix = prefix;
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/StatusCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/StatusCommand.java
index 20ba57d8db..eaf5483671 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/StatusCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/StatusCommand.java
@@ -91,6 +91,7 @@ public class StatusCommand extends GitCommand<Status> {
* @param path
* a path is relative to the top level of the repository
* @return {@code this}
+ * @since 3.1
*/
public StatusCommand addPath(String path) {
if (paths == null)
@@ -104,6 +105,7 @@ public class StatusCommand extends GitCommand<Status> {
*
* @return the paths for which the status is shown or <code>null</code> if
* the complete status for the whole repo is shown.
+ * @since 3.1
*/
public List<String> getPaths() {
return paths;
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java
index fd1de2956d..2f56775f53 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java
@@ -128,12 +128,16 @@ public class UploadPack {
* advertised.
* <p>
* This may happen, for example, when a custom {@link RefFilter} is set.
+ *
+ * @since 3.1
*/
TIP,
/**
* Client may ask for any commit reachable from any reference, even if that
* reference wasn't advertised.
+ *
+ * @since 3.1
*/
REACHABLE_COMMIT_TIP,
@@ -551,6 +555,7 @@ public class UploadPack {
* @param tc
* configuration controlling transfer options. If null the source
* repository's settings will be used.
+ * @since 3.1
*/
public void setTransferConfig(TransferConfig tc) {
this.transferConfig = tc != null ? tc : new TransferConfig(db);

Back to the top