Browse Source

Changing hardcoded `gitblit` origin into `origin`.

tags/v1.4.0
Martijn 10 years ago
parent
commit
22962389ba
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java

+ 1
- 1
src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java View File

@@ -65,7 +65,7 @@ public class EmptyRepositoryPage extends RootPage {
add(new Label("repository", repositoryName));
add(new RepositoryUrlPanel("pushurl", false, user, repository));
add(new Label("cloneSyntax", MessageFormat.format("git clone {0}", url)));
add(new Label("remoteSyntax", MessageFormat.format("git remote add gitblit {0}\ngit push gitblit master", url)));
add(new Label("remoteSyntax", MessageFormat.format("git remote add origin {0}\ngit push origin master", url)));
}
@Override

Loading…
Cancel
Save