My own Fork of gitbucket

@ssogabe ssogabe authored on 27 Sep 2013
embed-jetty (refs #96)Improve Jetty embedding process. 11 years ago
etc Fix small gap of a icon part. 11 years ago
project (refs #96)Improve Jetty embedding process. 11 years ago
src/ main Bug fix caused by path splitting. 11 years ago
.gitignore Ignore IDEA configuration files. 11 years ago
LICENSE (refs #30)Add LICENSE file 11 years ago
README.md Update README.md 11 years ago
build.xml allow users to build a war on Linux 11 years ago
command.bat Initial Import. 12 years ago
sbt-launch-0.12.3.jar Initial Import. 12 years ago
sbt.bat Remove proxy settings. 11 years ago
sbt.sh Add sbt.sh for UNIX users 11 years ago
README.md

GitBucket

GitBucket is the easily installable Github clone written with Scala.

The current version of GitBucket provides a basic features below:

  • Public / Private Git repository (http access only)
  • Repository viewer (some advanced features such as online file editing are not implemented)
  • Repository search (Code and Issues)
  • Wiki
  • Issues
  • Fork / Pull request
  • Mail notification
  • Activity timeline
  • User management (for Administrators)
  • Group (like Organization in Github)
  • LDAP integration
  • Gravatar support

Following features are not implemented, but we will make them in the future release!

  • File editing in repository viewer
  • Comment for the changeset
  • Network graph
  • Statics
  • Watch / Star

If you want to try the development version of GitBucket, see the documentation for developers at Wiki.

Installation

  1. Download latest gitbucket.war from the release page.
  2. Deploy it to the servlet container such as Tomcat or Jetty.
  3. Access http://[hostname]:[port]/gitbucket/ using your web browser.

The default administrator account is root and password is root.

(Since 1.6) or you can start GitBucket by java -jar gitbucket.war without servlet container. In this case, GitBucket URL is http://[hostname]:8080/. You can specify following options.

  • --port=[NUMBER]
  • --prefix=[CONTEXTPATH]

To upgrade GitBucket, only replace gitbucket.war. All GitBucket data is stored in HOME/gitbucket. So if you want to back up GitBucket data, copy this directory to the other disk.

Release Notes

1.6 - COMMING SOON!

  • Web hook.
  • Performance improvement for pull request.
  • Executable war file.

1.5 - 4 Sep 2013

  • Fork and pull request.
  • LDAP authentication.
  • Mail notification.
  • Add an option to turn off the gravatar support.
  • Add the branch tab in the repository viewer.
  • Encoding auto detection for the file content in the repository viewer.
  • Add favicon, header logo and icons for the timeline.
  • Specify data directory via environment variable GITBUCKET_HOME.
  • Fixed some bugs.

1.4 - 31 Jul 2013

  • Group management.
  • Repository search for code and issues.
  • Display user related issues on the dashboard.
  • Display participants avatar of issues on the issue page.
  • Performance improvement for repository viewer.
  • Alert by milestone due date.
  • H2 database administration console.
  • Fixed some bugs.

1.3 - 18 Jul 2013

  • Batch updating for issues.
  • Display assigned user on issue list.
  • User icon and Gravatar support.
  • Convert @xxxx to link to the account page.
  • Add copy to clipboard button for git clone URL.
  • Allows multi-byte characters as wiki page name.
  • Allows to create the empty repository.
  • Fixed some bugs.

1.2 - 09 Jul 2013

  • Added activity timeline.
  • Bugfix for Git 1.8.1.5 or later.
  • Allows multi-byte characters as label.
  • Fixed some bugs.

1.1 - 05 Jul 2013

  • Fixed some bugs.
  • Upgrade to JGit 3.0.

1.0 - 04 Jul 2013

  • This is a first public release.