summaryrefslogtreecommitdiffstats
path: root/src/site
Commit message (Collapse)AuthorAgeFilesLines
* DocumentationJames Moger2014-05-073-10/+14
|
* DocumentationJames Moger2014-04-231-1/+1
|
* Remove User parameter from SSH dispatch command setupJames Moger2014-04-171-5/+5
|
* Add plugin (un)install lifecycle methodsJames Moger2014-04-171-0/+17
|
* DocumentationJames Moger2014-04-162-9/+9
|
* DocumentationJames Moger2014-04-153-7/+70
|
* DocumentationJames Moger2014-04-131-1/+1
|
* DocumentationJames Moger2014-04-122-87/+130
|
* Add TicketHook extensionJames Moger2014-04-121-0/+23
|
* Add PatchsetHook extensionsJames Moger2014-04-121-106/+122
|
* Allow ReceiveHook extensionsJames Moger2014-04-121-1/+35
|
* Update to Jetty 9, drop AJPJames Moger2014-04-113-10/+4
|
* Improve plugin documentationJames Moger2014-04-112-10/+36
|
* DocumentationJames Moger2014-04-105-1/+42
|
* Split administration commands into a plugin, enhance plugin managerJames Moger2014-04-101-9/+13
|
* Implement management commands in repositories dispatcherJames Moger2014-04-101-3/+3
|
* DocumentationJames Moger2014-04-103-8/+6
|
* DocumentationJames Moger2014-04-101-0/+6
|
* Improve command help with formatting and usage examplesJames Moger2014-04-101-14/+13
|
* Refactor 'gitblit' commands into several nested dispatchersJames Moger2014-04-101-19/+15
|
* Start SSH usage documentationJames Moger2014-04-102-4/+89
|
* Remove remaining GoogleCharts code and update documentationJames Moger2014-04-101-1/+2
|
* Replace JCommander with args4jJames Moger2014-03-271-1/+1
|
* Add a French translationJohann Ollivier-Lapeyre2014-03-271-0/+1
|
* DocumentationJames Moger2014-03-201-3/+13
|
* DocumentationJames Moger2014-03-081-1/+1
|
* Move Gitblit branches to refs/meta/gitblitJames Moger2014-03-082-7/+7
|
* DocumentationJames Moger2014-03-072-0/+8
|
* DocumentationJames Moger2014-03-061-6/+8
|
* Documentation and clarify git workflowsJames Moger2014-03-062-21/+48
|
* Document ticket replication, mirroring, and advanced administrationJames Moger2014-03-061-0/+135
|
* Add and document REINDEX_TICKETS rpc request typeJames Moger2014-03-061-0/+2
|
* DocumentationJames Moger2014-03-044-41/+55
|
* DocumentationJames Moger2014-03-032-3/+4
|
* Ticket tracker with patchset contributionsJames Moger2014-03-035-0/+499
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A basic issue tracker styled as a hybrid of GitHub and BitBucket issues. You may attach commits to an existing ticket or you can push a single commit to create a *proposal* ticket. Tickets keep track of patchsets (one or more commits) and allow patchset rewriting (rebase, amend, squash) by detecing the non-fast-forward update and assigning a new patchset number to the new commits. Ticket tracker -------------- The ticket tracker stores tickets as an append-only journal of changes. The journals are deserialized and a ticket is built by applying the journal entries. Tickets are indexed using Apache Lucene and all queries and searches are executed against this Lucene index. There is one trade-off to this persistence design: user attributions are non-relational. What does that mean? Each journal entry stores the username of the author. If the username changes in the user service, the journal entry will not reflect that change because the values are hard-coded. Here are a few reasons/justifications for this design choice: 1. commit identifications (author, committer, tagger) are non-relational 2. maintains the KISS principle 3. your favorite text editor can still be your administration tool Persistence Choices ------------------- **FileTicketService**: stores journals on the filesystem **BranchTicketService**: stores journals on an orphan branch **RedisTicketService**: stores journals in a Redis key-value datastore It should be relatively straight-forward to develop other backends (MongoDB, etc) as long as the journal design is preserved. Pushing Commits --------------- Each push to a ticket is identified as a patchset revision. A patchset revision may add commits to the patchset (fast-forward) OR a patchset revision may rewrite history (rebase, squash, rebase+squash, or amend). Patchset authors should not be afraid to polish, revise, and rewrite their code before merging into the proposed branch. Gitblit will create one ref for each patchset. These refs are updated for fast-forward pushes or created for rewrites. They are formatted as `refs/tickets/{shard}/{id}/{patchset}`. The *shard* is the last two digits of the id. If the id < 10, prefix a 0. The *shard* is always two digits long. The shard's purpose is to ensure Gitblit doesn't exceed any filesystem directory limits for file creation. **Creating a Proposal Ticket** You may create a new change proposal ticket just by pushing a **single commit** to `refs/for/{branch}` where branch is the proposed integration branch OR `refs/for/new` or `refs/for/default` which both will use the default repository branch. git push origin HEAD:refs/for/new **Updating a Patchset** The safe way to update an existing patchset is to push to the patchset ref. git push origin HEAD:refs/heads/ticket/{id} This ensures you do not accidentally create a new patchset in the event that the patchset was updated after you last pulled. The not-so-safe way to update an existing patchset is to push using the magic ref. git push origin HEAD:refs/for/{id} This push ref will update an exisitng patchset OR create a new patchset if the update is non-fast-forward. **Rebasing, Squashing, Amending** Gitblit makes rebasing, squashing, and amending patchsets easy. Normally, pushing a non-fast-forward update would require rewind (RW+) repository permissions. Gitblit provides a magic ref which will allow ticket participants to rewrite a ticket patchset as long as the ticket is open. git push origin HEAD:refs/for/{id} Pushing changes to this ref allows the patchset authors to rebase, squash, or amend the patchset commits without requiring client-side use of the *--force* flag on push AND without requiring RW+ permission to the repository. Since each patchset is tracked with a ref it is easy to recover from accidental non-fast-forward updates. Features -------- - Ticket tracker with status changes and responsible assignments - Patchset revision scoring mechanism - Update/Rewrite patchset handling - Close-on-push detection - Server-side Merge button for simple merges - Comments with Markdown syntax support - Rich mail notifications - Voting - Mentions - Watch lists - Querying - Searches - Partial miletones support - Multiple backend options
* DocumentationJames Moger2014-02-266-20/+120
|
* Updated FAQ (issue-332)James Moger2014-02-261-32/+7
| | | | Change-Id: If6625e33806877e68c2e59470537e4c34be371ef
* Add GO launch parameter to specify daily, rolling log file generationJames Moger2014-02-211-2/+3
|
* Revised committer verification to require email addressJames Moger2013-11-291-2/+2
| | | | Change-Id: I5298c93e03099813f5713a4effd87913429aa3dc
* Refactor user services and separate authentication (issue-281)James Moger2013-11-291-14/+9
| | | | Change-Id: I336e005e02623fc5e11a4f8b4408bea5465a43fd
* Implement mirror executor (issue-5)James Moger2013-11-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | The mirror executor will fetch ref updates for repository mirrors. This feature is disabled by default and can be enabled by setting git.enableMirroring=true. The period between update checks is configurable, but it is global. An individual rpeository may not set it's own update schedule. Requirements: 1. you must manually clone the repository using native git git clone --mirror git://somewhere.com/myrepo.git 2. the "origin" remote must be the mirror source 3. the "origin" repository must be accessible without authentication OR the credentials must be embedded in the origin url (not recommended) Notes: 1. "origin" SSH urls are untested and not likely to work 2. mirrors cloned while Gitblit is running are likely to require clearing the gitblit cache (link on the repositories page of an administrator account) 3. Gitblit will automatically repair any invalid fetch refspecs with a "//" sequence. Change-Id: I4bbe3fb2df106366ae4c2313596d0fab0dfcac46
* Add setting to automatically redirect http requests to the https portJames Moger2013-10-271-2/+1
| | | | Change-Id: I33966b8292434c10ffd623838d09527aaebaca5f
* DocumentationJames Moger2013-10-2512-46/+64
| | | | Change-Id: I717e13d1f852a4adf50b547f4769dd62da2384ce
* Replaced MarkdownPapers with pegdownJames Moger2013-10-181-1/+1
| | | | Change-Id: I11eb50ba1ef0bef8ac47bf6f7b17e0f79ecd3f2d
* Remove incomplete and deprecated TicGit featureJames Moger2013-09-171-3/+2
| | | | Change-Id: Idb7de272589e086da9b2b3a241dcd082c1c8f27b
* Add an Apache htpasswd user serviceFlorian Zschocke2013-08-122-0/+9
| | | | | | | Add a new class, HtpasswdUserService, which performs authentication against a text file created with the Apache 'htpasswd' program. Added dependency on commons-codec:1.7
* DocumentationJames Moger2013-07-242-8/+16
|
* DocumentationJames Moger2013-07-241-1/+5
|
* DocumentationJames Moger2013-07-231-0/+1
|
* Added PAMUserService for local Linux/Unix/MacOSX account authenticationJames Moger2013-07-233-3/+13
|