summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2015-06-30 08:47:32 -0400
committerJames Moger <james.moger@gmail.com>2015-06-30 08:47:32 -0400
commit009226281fbca9b49a61719e70f5e1327f491169 (patch)
tree79295bde1bb3a9f37a84e84091be4befa0aeecfa /src
parent1ffca12a80cd53e71813301787e8cfeeedb43293 (diff)
parenta3e480e28aa25dbbe341b10cfeb3fb1cfa625d18 (diff)
downloadgitblit-009226281fbca9b49a61719e70f5e1327f491169.tar.gz
gitblit-009226281fbca9b49a61719e70f5e1327f491169.zip
Merge pull request #276 from mrjoel/mrjoel-typofixes
typo fixes
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/gitblit/manager/UserManager.java2
-rw-r--r--src/site/tickets_overview.mkd2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/gitblit/manager/UserManager.java b/src/main/java/com/gitblit/manager/UserManager.java
index 0d7ee9a5..e88ac93c 100644
--- a/src/main/java/com/gitblit/manager/UserManager.java
+++ b/src/main/java/com/gitblit/manager/UserManager.java
@@ -120,7 +120,7 @@ public class UserManager implements IUserManager {
File realmFile = runtimeManager.getFileOrFolder(Keys.realm.userService, "${baseFolder}/users.conf");
service = createUserService(realmFile);
} catch (InstantiationException | IllegalAccessException e) {
- logger.error("failed to instanciate user service {}: {}", realm, e.getMessage());
+ logger.error("failed to instantiate user service {}: {}", realm, e.getMessage());
}
}
setUserService(service);
diff --git a/src/site/tickets_overview.mkd b/src/site/tickets_overview.mkd
index 14e4ab99..10d0e18f 100644
--- a/src/site/tickets_overview.mkd
+++ b/src/site/tickets_overview.mkd
@@ -70,7 +70,7 @@ Gitblit has adopted Gerrit's three-repository workflow and *magic ref* design fo
1. The organizational unit of the Gitblit Tickets feature is the *ticket*.
2. A *ticket* can be used to report a bug, request an enhancement, ask a question, etc. A ticket can also be used to collaborate on a *patchset* that addresses the request.
3. A *patchset* is a series of commits from a merge base that exists in the target branch of your repository to the tip of the patchset. A patchset may only contain a single commit, or it may contain dozens. This is similar to the commits in a *Pull Request*. One important distinction here is that in Gitblit, each *Patchset* is developed on a separate branch and can be completely rewritten without losing the previous patchsets (this creates a new patchset).
-4. A *ticket* monitors the development of *patchsets* by tracking *revisions* to *patchsets*. The ticket alslo monitors rewritten patchsets. Each *patchset* is developed on it's own Git branch.
+4. A *ticket* monitors the development of *patchsets* by tracking *revisions* to *patchsets*. The ticket also monitors rewritten patchsets. Each *patchset* is developed on it's own Git branch.
Tracking *patchsets* is similar in concept to Gerrit, but there is a critical difference. In Gerrit, *every* commit in the *patchset* has it's own ticket **AND** Git branch. In Gerrit, *patchsets* can be easily rewritten and for each rewritten commit, a new branch ref is created. This leads to an explosion in refs for the repository over time. In Gitblit, only the tip of the *patchset* gets a branch ref and this branch ref is updated, like a regular branch, unless a rewrite is detected.