Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | pull_request: able to ignore whitespace when check conflict (#4834) | Unknwon | 2017-11-16 |
| | |||
* | repo/pull: allow rebase before merging (#4805) | Unknwon | 2017-11-15 |
| | |||
* | pull: add an option to use rebase for merging pull requests | mharinder | 2017-11-15 |
| | | | | | | | | | | | | | | | | For DVCS, either merge or rebase works for getting new code in a pull request in the main branch. The rebase workflow produces a linear history which is cleaner, and more bisect-able. This commit adds a repo-level option to enable the rebase workflow. Once enabled, "Merge Pull Request" will be replaced by "Rebase and Merge Pull Request" which does exactly what the user wants. It's unlikely a project wants a mixed-use of both rebase and merge workflows, therefore the feature is not implemented as a drop-down button like what GitHub does (https://github.com/blog/2243-rebase-and-merge-pull-requests). | ||
* | routes/home: minor code improve | Unknwon | 2017-07-18 |
| | |||
* | explore: fix total repository number and page number do not match (#4441) | Unknwon | 2017-07-18 |
| | | | | | Because in the final repository list we use Distinct to remove duplicates, but didn't do so when count total number of repositories. | ||
* | repo: fix cannot fork repository (#4572) | Unknwon | 2017-07-18 |
| | | | | Should not load attributes if repository not found in HasForkedRepo. | ||
* | repo: fix panic on pull request submit (#4572) | Unknwon | 2017-07-14 |
| | |||
* | api/repo: load attributes when listing user repositories (#4565) | Unknwon | 2017-06-21 |
| | |||
* | Refactoring: remove sessionRelease() | Unknwon | 2017-06-11 |
| | | | | XORM supports automatic roll back in session Close() already. | ||
* | random: some code simplify | Unknwon | 2017-06-11 |
| | |||
* | repo: change action visibility when repository visibility changed (#4414) | Unknwon | 2017-06-11 |
| | |||
* | repo: load base repository for loadAttributes | Unknwon | 2017-06-08 |
| | |||
* | models/repo: modify keyword search to include description for #4287 (#4548) | Simon Dann | 2017-06-06 |
| | | | | | | * Modified repository keyword search to include description for #4287 * Replacing Where with And for #4548 | ||
* | repo: expose more fields to API format (#4484) | Unknwon | 2017-06-02 |
| | |||
* | models: remove redundant tags for primary keys | Unknwon | 2017-05-21 |
| | |||
* | api/repo: add Mirror field (#4392) | Unknwon | 2017-04-07 |
| | |||
* | api/repo: improve migration error handling | Unknwon | 2017-04-07 |
| | |||
* | pkg/setting: rename {AppUrl, AppSubUrl} -> {AppURL, AppSubURL} | Unknwon | 2017-04-06 |
| | |||
* | Refactoring: rename modules -> pkg | Unknwon | 2017-04-04 |
| | | | | | | | | Reasons to change: 1. Shorter than 'modules' 2. More generally used by other Go projects 3. Corresponds to the naming of '$GOPATH/pkg' directory | ||
* | vendor: update github.com/gogits/git-module | Unknwon | 2017-04-03 |
| | |||
* | repo: handle git.ErrUnsupportedVersion error type | Unknwon | 2017-04-01 |
| | |||
* | modules: rename markdown -> markup | Unknwon | 2017-03-31 |
| | | | | | | | To further support more markup languages (e.g. Org-mode, AsciiDoc, reStructuredText), the name 'markdown' is inappropriate. This is the first step towards more markup language support. | ||
* | models/repo: avoid duplicated results in SearchRepositoryByName (#4344) | Pablo Saavedra | 2017-03-26 |
| | |||
* | repo: cleanup some code | Unknwon | 2017-03-24 |
| | |||
* | repo: allow private repository to have public wiki or issues | Unknwon | 2017-03-24 |
| | | | | Relates to #649 and #2157 | ||
* | repo: update size after fork, migrate and mirror sync (#4336) | Unknwon | 2017-03-24 |
| | |||
* | repo: remove legacy sanitizer for repository description | Unknwon | 2017-03-23 |
| | | | | Related to #4329. | ||
* | repo: fix unable to propose pull request from secondary fork (#4324) | Unknwon | 2017-03-23 |
| | |||
* | user/settings: complete repositories panel (#4312) | Unknwon | 2017-03-23 |
| | |||
* | error: move ErrRepoNotExist -> errors.RepoNotExist | Unknwon | 2017-03-23 |
| | |||
* | explore: able list and search for private but accessible repositories (#3088) | Unknwon | 2017-03-17 |
| | |||
* | repo: allow issues and wiki for bare repository (#4104) | Unknwon | 2017-03-16 |
| | |||
* | repo/commit: able to config default commits page size (#4230) | Unknwon | 2017-03-16 |
| | | | | Added config option '[ui.user] COMMITS_PAGING_NUM'. | ||
* | models/repo: minor code style and comment fix (#4273) | Unknwon | 2017-03-13 |
| | |||
* | models/repo: allow SearchRepos to return private but accessible repositories ↵ | Rob Richards | 2017-03-13 |
| | | | | | | | | | | | | | | | | | | | (#4273) * models/repo.go SearchRepositoryByName() Updated function to return public and private repositories that the logged in user has been given rights to view issue #3088 * models/repo.go SearchRepositoryName changed repository table alias to 'repo' removed debug line * models/repo.go SearchRepositoryByName modified UserID search query to use the "access" table instead of team_repo, team_user etc * models/repo.go SearchRepositoryByName 1) uppercased SQL keywords 2) removed alias for ACCESS table | ||
* | repo: able to view size (#1158) | Unknwon | 2017-03-12 |
| | |||
* | refactoring: experimental with models/errors package | Unknwon | 2017-03-12 |
| | |||
* | webhook: add fork event | Unknwon | 2017-02-27 |
| | |||
* | dashboard: add delete branch and tag news feeds | Unknwon | 2017-02-27 |
| | |||
* | repo: able to perform initial commit on behave of actual user | Unknwon | 2017-02-27 |
| | |||
* | models/repo: delete protect branch options when delete repository | Unknwon | 2017-02-23 |
| | |||
* | repo: add protect branch whitelist (#4177) | Unknwon | 2017-02-23 |
| | | | | | Add options to add users and teams to whitelist of a protected branch. This is only available for organizational repositories. | ||
* | models/access: hasAccess only need userID not user object | Unknwon | 2017-02-23 |
| | |||
* | migrate: fix unexpected removal of repository when wiki is detected | Unknwon | 2017-02-21 |
| | |||
* | models/repo: fix repository files weren't cleaned up (#4167) | Unknwon | 2017-02-21 |
| | |||
* | repo: several minor improvements | Unknwon | 2017-02-19 |
| | | | | | | 1. Fix sample content didn't show up when hook doesn't exist. 2. Fix CSS 'word-break' to use 'break-word' not 'break-all'. 3. Fix single quote in 'locale_en-US.ini' file. | ||
* | models/repo: handle deletion on Windows (#4152) | Unknwon | 2017-02-18 |
| | |||
* | cron: add repository archive cleanup (#4061) | Unknwon | 2017-02-18 |
| | |||
* | repo: assignee can be anyone who has read access (#3739) | Unknwon | 2017-02-17 |
| | |||
* | Initial version of protected branches (#776) | Unknwon | 2017-02-17 |
| | | | | | - Able to restrict force push and deletion - Able to restrict direct push |