Merge "Correct comment on CloneCommand.setRemote method."

This commit is contained in:
Shawn Pearce 2011-08-13 17:00:29 -04:00 committed by Code Review
commit ac9d9ee96d
1 changed files with 6 additions and 1 deletions

View File

@ -301,8 +301,13 @@ public CloneCommand setBare(boolean bare) {
}
/**
* The remote name used to keep track of the upstream repository for the
* clone operation. If no remote name is set, the default value of
* <code>Constants.DEFAULT_REMOTE_NAME</code> will be used.
*
* @see Constants#DEFAULT_REMOTE_NAME
* @param remote
* the branch to keep track of in the origin repository
* name that keeps track of the upstream repository
* @return this instance
*/
public CloneCommand setRemote(String remote) {