Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

19,130

Downloads of v 1.18.0:

131

Last Update:

03 Jan 2023

Package Maintainer(s):

Software Author(s):

  • Gitea

Tags:

gitea git

Gitea

This is not the latest version of Gitea available.

  • 1
  • 2
  • 3

1.18.0 | Updated: 03 Jan 2023

Downloads:

19,130

Downloads of v 1.18.0:

131

Maintainer(s):

Software Author(s):

  • Gitea

Tags:

gitea git

Gitea 1.18.0

This is not the latest version of Gitea available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Gitea, run the following command from the command line or from PowerShell:

>

To upgrade Gitea, run the following command from the command line or from PowerShell:

>

To uninstall Gitea, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade gitea -y --source="'INTERNAL REPO URL'" --version="'1.18.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade gitea -y --source="'INTERNAL REPO URL'" --version="'1.18.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install gitea
  win_chocolatey:
    name: gitea
    version: '1.18.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'gitea' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.18.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller gitea
{
    Name     = "gitea"
    Version  = "1.18.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'gitea':
  ensure   => '1.18.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 03 Jan 2023.

Description

Gitea is a lightweight code hosting solution written in Go and published under the MIT license.


tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop';

$packageName= 'gitea'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://dl.gitea.io/gitea/1.18.0/gitea-1.18.0-gogit-windows-4.0-386.exe'
$url64      = 'https://dl.gitea.io/gitea/1.18.0/gitea-1.18.0-gogit-windows-4.0-amd64.exe'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $packageName

  url           = $url
  url64bit      = $url64

  softwareName  = 'Gitea'

  checksum      = 'e0b8954d5ebd8aeb7d9c1c96d89e4f7fa67c0c79ddf330c4aa8f31742588ee64'
  checksumType  = 'sha256'
  checksum64    = 'ff60b8aa8ad1ba02bd1961df7793051d8e10da8dd6d3a424df72fb0cf5f1f222'
  checksumType64= 'sha256'

  fileFullPath  = "$toolsDir\gitea.exe"

  validExitCodes= @(0)
}

Get-ChocolateyWebFile @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Gitea 1.21.7 96 Thursday, February 29, 2024 Approved
Gitea 1.21.0 432 Tuesday, November 14, 2023 Approved
Gitea 1.20.4 327 Thursday, September 28, 2023 Approved
Gitea 1.20.2 292 Sunday, July 30, 2023 Approved
Gitea 1.20.0 109 Monday, July 17, 2023 Approved
Gitea 1.19.0 528 Monday, April 3, 2023 Approved
Gitea 1.18.5 313 Tuesday, February 21, 2023 Approved
Gitea 1.18.3 216 Monday, January 23, 2023 Approved
Gitea 1.18.2 68 Friday, January 20, 2023 Approved
Gitea 1.18.1 62 Tuesday, January 17, 2023 Approved
Gitea 1.18.0 131 Tuesday, January 3, 2023 Approved
Gitea 1.17.4 113 Thursday, December 22, 2022 Approved
Gitea 1.17.3 409 Tuesday, October 18, 2022 Approved
Gitea 1.17.1 451 Thursday, August 18, 2022 Approved
Gitea 1.17.0 160 Sunday, July 31, 2022 Approved
Gitea 1.16.8 519 Monday, May 16, 2022 Approved
Gitea 1.16.7 169 Monday, May 2, 2022 Approved
Gitea 1.16.6 133 Thursday, April 21, 2022 Approved
Gitea 1.16.5 249 Thursday, March 24, 2022 Approved
Gitea 1.16.4 127 Monday, March 14, 2022 Approved
Gitea 1.16.3 123 Thursday, March 3, 2022 Approved
Gitea 1.16.2 110 Thursday, February 24, 2022 Approved
Gitea 1.16.0 253 Monday, January 31, 2022 Approved
Gitea 1.15.10 208 Friday, January 14, 2022 Approved
Gitea 1.15.9 204 Thursday, December 30, 2021 Approved
Gitea 1.15.8 132 Thursday, December 23, 2021 Approved
Gitea 1.15.6 348 Monday, November 1, 2021 Approved
Gitea 1.15.4 211 Sunday, October 10, 2021 Approved
Gitea 1.15.3 139 Friday, September 24, 2021 Approved
Gitea 1.15.2 185 Friday, September 3, 2021 Approved
Gitea 1.15.0 178 Sunday, August 22, 2021 Approved
Gitea 1.14.6 200 Friday, August 6, 2021 Approved
Gitea 1.14.5 143 Saturday, July 24, 2021 Approved
Gitea 1.14.4 152 Wednesday, July 14, 2021 Approved
Gitea 1.14.3 188 Friday, June 18, 2021 Approved
Gitea 1.14.2 332 Monday, May 10, 2021 Approved
Gitea 1.14.0-rc2 141 Tuesday, March 23, 2021 Approved
Gitea 1.13.6 275 Wednesday, March 24, 2021 Approved
Gitea 1.13.5 110 Sunday, March 21, 2021 Approved
Gitea 1.13.4 116 Thursday, March 18, 2021 Approved
Gitea 1.13.3 170 Friday, March 5, 2021 Approved
Gitea 1.13.2 307 Thursday, February 4, 2021 Approved
Gitea 1.13.0 409 Wednesday, December 2, 2020 Approved
Gitea 1.12.5 467 Thursday, October 1, 2020 Approved
Gitea 1.12.4 317 Friday, September 4, 2020 Approved
Gitea 1.12.3 303 Tuesday, July 28, 2020 Approved
Gitea 1.12.2 261 Sunday, July 12, 2020 Approved
Gitea 1.12.1 268 Monday, June 22, 2020 Approved
Gitea 1.12.0 180 Thursday, June 18, 2020 Approved
Gitea 1.11.6 229 Wednesday, June 3, 2020 Approved
Gitea 1.11.3 387 Thursday, March 12, 2020 Approved
Gitea 1.11.1 250 Monday, February 17, 2020 Approved
Gitea 1.11.0 162 Thursday, February 13, 2020 Approved
Gitea 1.10.3 189 Wednesday, January 29, 2020 Approved
Gitea 1.10.2 233 Thursday, January 2, 2020 Approved
Gitea 1.10.1 228 Friday, December 6, 2019 Approved
Gitea 1.9.5 246 Thursday, October 31, 2019 Approved
Gitea 1.9.4 190 Thursday, October 10, 2019 Approved
Gitea 1.9.3 202 Thursday, September 12, 2019 Approved
Gitea 1.9.2 195 Friday, September 6, 2019 Approved
Gitea 1.8.2 324 Sunday, June 9, 2019 Approved
Gitea 1.8.1 241 Friday, May 17, 2019 Approved
Gitea 1.8.0 216 Friday, May 3, 2019 Approved
Gitea 1.7.5 240 Tuesday, April 2, 2019 Approved
Gitea 1.7.4 241 Wednesday, March 13, 2019 Approved
Gitea 1.7.0 236 Friday, January 25, 2019 Approved
Gitea 1.5.1 358 Monday, September 10, 2018 Approved
Gitea 1.4.0 394 Thursday, April 26, 2018 Approved
Gitea 1.3.3 304 Monday, March 19, 2018 Approved
Gitea 1.3.2 342 Sunday, January 21, 2018 Approved
Gitea 1.2.3 378 Saturday, November 11, 2017 Approved
Gitea 1.2.0 358 Friday, October 13, 2017 Approved
Gitea 1.1.4 357 Sunday, September 10, 2017 Approved
Gitea 1.1.3 380 Friday, August 25, 2017 Approved
Gitea 0.0.2 356 Sunday, August 13, 2017 Approved
Gitea 0.0.1 353 Sunday, September 10, 2017 Approved

Changelog

  • SECURITY
    • Remove ReverseProxy authentication from the API (#22219) (#22251)
    • Support Go Vulnerability Management (#21139)
    • Forbid HTML string tooltips (#20935)
  • BREAKING
    • Rework mailer settings (#18982)
    • Remove U2F support (#20141)
    • Refactor i18n to locale (#20153)
    • Enable contenthash in filename for dynamic assets (#20813)
  • FEATURES
    • Add color previews in markdown (#21474)
    • Allow package version sorting (#21453)
    • Add support for Chocolatey/NuGet v2 API (#21393)
    • Add API endpoint to get changed files of a PR (#21177)
    • Add filetree on left of diff view (#21012)
    • Support Issue forms and PR forms (#20987)
    • Add support for Vagrant packages (#20930)
    • Add support for npm unpublish (#20688)
    • Add badge capabilities to users (#20607)
    • Add issue filter for Author (#20578)
    • Add KaTeX rendering to Markdown. (#20571)
    • Add support for Pub packages (#20560)
    • Support localized README (#20508)
    • Add support mCaptcha as captcha provider (#20458)
    • Add team member invite by email (#20307)
    • Added email notification option to receive all own messages (#20179)
    • Switch Unicode Escaping to a VSCode-like system (#19990)
    • Add user/organization code search (#19977)
    • Only show relevant repositories on explore page (#19361)
    • User keypairs and HTTP signatures for ActivityPub federation using go-ap (#19133)
    • Add sitemap support (#18407)
    • Allow creation of OAuth2 applications for orgs (#18084)
    • Add system setting table with cache and also add cache supports for user setting (#18058)
    • Add pages to view watched repos and subscribed issues/PRs (#17156)
    • Support Proxy protocol (#12527)
    • Implement sync push mirror on commit (#19411)
  • API
    • Allow empty assignees on pull request edit (#22150) (#22214)
    • Make external issue tracker regexp configurable via API (#21338)
    • Add name field for org api (#21270)
    • Show teams with no members if user is admin (#21204)
    • Add latest commit's SHA to content response (#20398)
    • Add allow_rebase_update, default_delete_branch_after_merge to repository api response (#20079)
    • Add new endpoints for push mirrors management (#19841)
  • ENHANCEMENTS
    • Add setting to disable the git apply step in test patch (#22130) (#22170)
    • Multiple improvements for comment edit diff (#21990) (#22007)
    • Fix button in branch list, avoid unexpected page jump before restore branch actually done (#21562) (#21928)
    • Fix flex layout for repo list icons (#21896) (#21920)
    • Fix vertical align of committer avatar rendered by email address (#21884) (#21918)
    • Fix setting HTTP headers after write (#21833) (#21877)
    • Color and Style enhancements (#21784, #21799) (#21868)
    • Ignore line anchor links with leading zeroes (#21728) (#21776)
    • Quick fixes monaco-editor error: "vs.editor.nullLanguage" (#21734) (#21738)
    • Use CSS color-scheme instead of invert (#21616) (#21623)
    • Respect user's locale when rendering the date range in the repo activity page (#21410)
    • Change commits-table column width (#21564)
    • Refactor git command arguments and make all arguments to be safe to be used (#21535)
    • CSS color enhancements (#21534)
    • Add link to user profile in markdown mention only if user exists (#21533, #21554)
    • Add option to skip index dirs (#21501)
    • Diff file tree tweaks (#21446)
    • Localize all timestamps (#21440)
    • Add code highlighting in issue titles (#21432)
    • Use Name instead of DisplayName in LFS Lock (#21415)
    • Consolidate more CSS colors into variables (#21402)
    • Redirect to new repository owner (#21398)
    • Use ISO date format instead of hard-coded English date format for date range in repo activity page (#21396)
    • Use weighted algorithm for string matching when finding files in repo (#21370)
    • Show private data in feeds (#21369)
    • Refactor parseTreeEntries, speed up tree list (#21368)
    • Add GET and DELETE endpoints for Docker blob uploads (#21367)
    • Add nicer error handling on template compile errors (#21350)
    • Add stat to ToCommit function for speed (#21337)
    • Support instance-wide OAuth2 applications (#21335)
    • Record OAuth client type at registration (#21316)
    • Add new CSS variables --color-accent and --color-small-accent (#21305)
    • Improve error descriptions for unauthorized_client (#21292)
    • Case-insensitive "find files in repo" (#21269)
    • Consolidate more CSS rules, fix inline code on arc-green (#21260)
    • Log real ip of requests from ssh (#21216)
    • Save files in local storage as group readable (#21198)
    • Enable fluid page layout on medium size viewports (#21178)
    • File header tweaks (#21175)
    • Added missing headers on user packages page (#21172)
    • Display image digest for container packages (#21170)
    • Skip dirty check for team forms (#21154)
    • Keep path when creating a new branch (#21153)
    • Remove fomantic image module (#21145)
    • Make labels clickable in the comments section. (#21137)
    • Sort branches and tags by date descending (#21136)
    • Better repo API unit checks (#21130)
    • Improve commit status icons (#21124)
    • Limit length of repo description and repo url input fields (#21119)
    • Show .editorconfig errors in frontend (#21088)
    • Allow poster to choose reviewers (#21084)
    • Remove black labels and CSS cleanup (#21003)
    • Make e-mail sanity check more precise (#20991)
    • Use native inputs in whitespace dropdown (#20980)
    • Enhance package date display (#20928)
    • Display total blob size of a package version (#20927)
    • Show language name on hover (#20923)
    • Show instructions for all generic package files (#20917)
    • Refactor AssertExistsAndLoadBean to use generics (#20797)
    • Move the official website link at the footer of gitea (#20777)
    • Add support for full name in reverse proxy auth (#20776)
    • Remove useless JS operation for relative time tooltips (#20756)
    • Replace some icons with SVG (#20741)
    • Change commit status icons to SVG (#20736)
    • Improve single repo action for issue and pull requests (#20730)
    • Allow multiple files in generic packages (#20661)
    • Add option to create new issue from /issues page (#20650)
    • Background color of private list-items updated (#20630)
    • Added search input field to issue filter (#20623)
    • Increase default item listing size ISSUE_PAGING_NUM to 20 (#20547)
    • Modify milestone search keywords to be case insensitive again (#20513)
    • Show hint to link package to repo when viewing empty repo package list (#20504)
    • Add Tar ZSTD support (#20493)
    • Make code review checkboxes clickable (#20481)
    • Add "X-Gitea-Object-Type" header for GET /raw/ & /media/ API (#20438)
    • Display project in issue list (#20434)
    • Prepend commit message to template content when opening a new PR (#20429)
    • Replace fomantic popup module with tippy.js (#20428)
    • Allow to specify colors for text in markup (#20363)
    • Allow access to the Public Organization Member lists with minimal permissions (#20330)
    • Use default values when provided values are empty (#20318)
    • Vertical align navbar avatar at middle (#20302)
    • Delete cancel button in repo creation page (#21381)
    • Include login_name in adminCreateUser response (#20283)
    • fix: icon margin in user/settings/repos (#20281)
    • Remove blue text on migrate page (#20273)
    • Modify milestone search keywords to be case insensitive (#20266)
    • Move some files into models' sub packages (#20262)
    • Add tooltip to repo icons in explore page (#20241)
    • Remove deprecated licenses (#20222)
    • Webhook for Wiki changes (#20219)
    • Share HTML template renderers and create a watcher framework (#20218)
    • Allow enable LDAP source and disable user sync via CLI (#20206)
    • Adds a checkbox to select all issues/PRs (#20177)
    • Refactor i18n to locale (#20153)
    • Disable status checks in template if none found (#20088)
    • Allow manager logging to set SQL (#20064)
    • Add order by for assignee no sort issue (#20053)
    • Take a stab at porting existing components to Vue3 (#20044)
    • Add doctor command to write commit-graphs (#20007)
    • Add support for authentication based on reverse proxy email (#19949)
    • Enable spellcheck for EasyMDE, use contenteditable mode (#19776)
    • Allow specifying SECRET_KEY_URI, similar to INTERNAL_TOKEN_URI (#19663)
    • Rework mailer settings (#18982)
    • Add option to purge users (#18064)
    • Add author search input (#21246)
    • Make rss/atom identifier globally unique (#21550)
  • BUGFIXES
    • Auth interface return error when verify failure (#22119) (#22259)
    • Use complete SHA to create and query commit status (#22244) (#22257)
    • Update bleve and zapx to fix unaligned atomic (#22031) (#22218)
    • Prevent panic in doctor command when running default checks (#21791) (#21807)
    • Load GitRepo in API before deleting issue (#21720) (#21796)
    • Ignore line anchor links with leading zeroes (#21728) (#21776)
    • Set last login when activating account (#21731) (#21755)
    • Fix UI language switching bug (#21597) (#21749)
    • Quick fixes monaco-editor error: "vs.editor.nullLanguage" (#21734) (#21738)
    • Allow local package identifiers for PyPI packages (#21690) (#21727)
    • Deal with markdown template without metadata (#21639) (#21654)
    • Fix opaque background on mermaid diagrams (#21642) (#21652)
    • Fix repository adoption on Windows (#21646) (#21650)
    • Sync git hooks when config file path changed (#21619) (#21626)
    • Fix 500 on PR files API (#21602) (#21607)
    • Fix Timestamp.IsZero (#21593) (#21603)
    • Fix viewing user subscriptions (#21482)
    • Fix mermaid-related bugs (#21431)
    • Fix branch dropdown shifting on page load (#21428)
    • Fix default theme-auto selector when nologin (#21346)
    • Fix and improve incorrect error messages (#21342)
    • Fix formatted link for PR review notifications to matrix (#21319)
    • Center-aligning content of WebAuthN page (#21127)
    • Remove follow from commits by file (#20765)
    • Fix commit status popup (#20737)
    • Fix init mail render logic (#20704)
    • Use correct page size for link header pagination (#20546)
    • Preserve unix socket file (#20499)
    • Use tippy.js for context popup (#20393)
    • Add missing parameter for error in log message (#20144)
    • Do not allow organisation owners add themselves as collaborator (#20043)
    • Rework file highlight rendering and fix yaml copy-paste (#19967)
    • Improve code diff highlight, fix incorrect rendered diff result (#19958)
  • TESTING
    • Improve OAuth integration tests (#21390)
    • Add playwright tests (#20123)
  • BUILD
    • Switch to building with go1.19 (#20695)
    • Update JS dependencies, adjust eslint (#20659)
    • Add more linters to improve code readability (#19989)

Thanks to our Contributors

@42wim, @6543, @a1012112796, @aceArt-GmbH, @ajgon, @akshaymankar, @algernon, @andrewimeson, @appleboy, @arkamar, @balanceofcowards, @balki, @bianjp, @BlenderDefender, @BLumia, @catdevnull, @cboylan, @chrullrich, @CLanguagePurist, @clarfonthey, @CodeDoctorDE, @danog, @delvh, @dependabot, @dhruvmanila, @eeyrjmr, @eleith, @Enrico204, @f0086, @fantashley, @fitithw, @frankli0324, @gabriel-vasile, @Gusted, @harryzcy, @HeySora, @hickford, @jackv24, @JakobDev, @jedi7, @joecarl, @johanvdw, @jolheiser, @jpokan, @jpraet, @Juneezee, @justusbunsi, @kdumontnu, @KiaraGrouwstra, @kimbj95, @KN4CK3R, @kolaente, @lafriks, @lhsazevedo, @lukeawyatt, @lunny, @luzpaz, @MaeIsBad, @mhlakhani, @mohsek, @nagos, @neel1996, @neonn, @noerw, @oliverpool, @parnic, @pboguslawski, @petergardfjall, @plsnp, @qwerty287, @Racer159, @RainboWu, @RaymondKroon, @realaravinth, @renbaoshuo, @ridnlee, @Ryuno-Ki, @sebastian-sauer, @sergemedvid, @s-hamann, @silverwind, @soulseekah, @soumyadey, @SteveTheEngineer, @Ta180m, @techknowlogick, @tyroneyeh, @viceice, @willnorris, @wolfogre, @wxiaoguang, @xin-u, @xpy865934, @yardenshoham, @zenofile, @zeripath


This package has no dependencies.

Discussion for the Gitea Package

Ground Rules:

  • This discussion is only about Gitea and the Gitea package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Gitea, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus