{"id":49223021,"url":"https://github.com/createchance/gitiles","last_synced_at":"2026-04-24T05:03:29.466Z","repository":{"id":88209878,"uuid":"45651702","full_name":"CreateChance/gitiles","owner":"CreateChance","description":null,"archived":false,"fork":false,"pushed_at":"2015-11-06T02:10:16.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-02-27T07:07:47.715Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CreateChance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-06T01:36:44.000Z","updated_at":"2023-03-08T09:21:43.211Z","dependencies_parsed_at":"2023-06-18T15:07:10.911Z","dependency_job_id":null,"html_url":"https://github.com/CreateChance/gitiles","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/CreateChance/gitiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CreateChance%2Fgitiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CreateChance%2Fgitiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CreateChance%2Fgitiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CreateChance%2Fgitiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CreateChance","download_url":"https://codeload.github.com/CreateChance/gitiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CreateChance%2Fgitiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32209897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-24T05:03:27.221Z","updated_at":"2026-04-24T05:03:29.461Z","avatar_url":"https://github.com/CreateChance.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Gitiles - A simple JGit repository browser\n==========================================\n\nGitiles is a simple repository browser for Git repositories, built on JGit. Its\nguiding principle is simplicity: it has no formal access controls, no write\naccess, no fancy Javascript, etc.\n\n\nBuilding\n--------\n\nGitiles requires [Buck](http://facebook.github.io/buck/) to build.\n\n```\n  sudo apt-get install ant\n  cd ${HOME}\n  git clone https://github.com/facebook/buck.git\n  cd buck\n  ant\n  sudo ln -s ${PWD}/bin/buck /usr/bin/buck\n  cd /path/to/gitiles\n  git submodule update --init\n  buck build all\n  buck test\n```\n\n\nTesting\n-------\n\n```\n  cd /path/to/repositories  # Don't run from the gitiles repo.\n  /path/to/gitiles/tools/run_dev.sh\n```\n\nThis will recompile and start a development server.  Open\nhttp://localhost:8080/ to view your local copy of gitiles, which\nwill serve any repositories under `/path/to/repositories`.\n\nTo run unit tests, run `buck test`.\n\n\nEclipse IDE\n-----------\n\nIf you'd like to use Eclipse to edit Gitiles, first generate a project file:\n\n```\n  ./bucklets/tools/eclipse.py --src\n```\n\nImport the project in Eclipse:\n\n```\n  File -\u003e Import -\u003e Existing Projects into Workpace\n```\n\nThe project only needs to be rebuilt if the source roots or third-party\nlibraries have changed. For best results, ensure the project is closed in\nEclipse before rebuilding.\n\n\nCode Style\n----------\n\nJava code in Gitiles follows the [Google Java Style Guide]\n(https://google.github.io/styleguide/javaguide.html) with a 100-column limit.\n\nCSS in Gitiles follows the [SUIT CSS naming conventions]\n(https://github.com/suitcss/suit/blob/master/doc/naming-conventions.md).\n\nCode Review\n-----------\n\nGitiles uses Gerrit for code review:\nhttps://gerrit-review.googlesource.com/\n\nGitiles uses the [\"git push\" workflow][1] with server\nhttps://gerrit.googlesource.com/gitiles.  You will need a\n[generated cookie][2].\n\n[1]: https://gerrit-review.googlesource.com/Documentation/user-upload.html#_git_push\n[2]: https://gerrit.googlesource.com/new-password\n\nGerrit depends on \"Change-Id\" annotations in your commit message.\nIf you try to push a commit without one, it will explain how to\ninstall the proper git-hook:\n\n```\ncurl -Lo `git rev-parse --git-dir`/hooks/commit-msg \\\n    https://gerrit-review.googlesource.com/tools/hooks/commit-msg\nchmod +x `git rev-parse --git-dir`/hooks/commit-msg\n```\n\nBefore you create your local commit (which you'll push to Gerrit)\nyou will need to set your email to match your Gerrit account:\n\n```\ngit config --local --add user.email foo@bar.com\n```\n\nNormally you will create code reviews by pushing for master:\n\n```\ngit push origin HEAD:refs/for/master\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreatechance%2Fgitiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreatechance%2Fgitiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreatechance%2Fgitiles/lists"}