mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 19:11:38 +01:00
4cda7e0299
Merge branch 'master' into issue-97/pulls-clean vendor terminal dependency pull/push: provide authentication method automatically select an AuthMethod according to the remote url type. If required, credentials are prompted for login: store username & optional keyfile refactor refactor GetRemote Merge branch 'master' into issue-97/pulls-clean adress code review add --ignore-sha flag When set, the local branch is not matched against the remote sha, but the remote branch name. This makes the command more flexible with diverging branches. add missing error check fix branch-not-found case Merge branch 'master' into issue-97/pulls-clean use directory namespaces for branches & remotes fix TeaCreateBranch() improve method of TeaFindBranch() now only checking .git/refs instead of looking up .git/config which may not list the branch add `tea pulls clean` fixes #97 add copyright to new files make linter happy refactor: use new git functions for old code add `tea pulls checkout` Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/105 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
19 lines
617 B
Modula-2
19 lines
617 B
Modula-2
module code.gitea.io/tea
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
code.gitea.io/sdk/gitea v0.11.2
|
|
github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
|
|
github.com/go-gitea/yaml v0.0.0-20170812160011-eb3733d160e7
|
|
github.com/mattn/go-runewidth v0.0.4 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.1
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/urfave/cli/v2 v2.1.1
|
|
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
|
|
gopkg.in/src-d/go-git.v4 v4.13.1
|
|
gopkg.in/yaml.v2 v2.2.7 // indirect
|
|
)
|