Gitlab 13.9
about.gitlab.com
Gitlab 13.9
1–10 of 63 posts
Re: Gitlab 13.9
#2Among the 299 community contributions in this release:
- GPU and smart scheduling support for GitLab Runner [1]
- The ability to follow other GitLab users [2]
- 1 line installer for the GitLab Kubernetes Agent [3]
- An activity filter on Vulnerability Reports [4]
1 - https://about.gitlab.com/releases/2021/02/22/gitlab-13-9-rel...
2 - https://about.gitlab.com/releases/2021/02/22/gitlab-13-9-rel...
3 - https://gitlab.com/gitlab-org/cluster-integration/gitlab-age...
4 - https://about.gitlab.com/releases/2021/02/22/gitlab-13-9-rel...
Re: Gitlab 13.9
#3Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution.
Gitea is light weight but for any additional functionality third-party utilities are needed.
Re: Gitlab 13.9
#4Re: Gitlab 13.9
#5Between Gitlab,Gitea and bare-git repos, which one should I use for personal (1-man) projects? Here are my thoughts: Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution. Gitea is light weight but for any additional functionality third-party utilities are needed.
Re: Gitlab 13.9
#6Between Gitlab,Gitea and bare-git repos, which one should I use for personal (1-man) projects? Here are my thoughts: Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution. Gitea is light weight but for any additional functionality third-party utilities are needed.
GitLab has CI and a whole host of other features (artifact repositories, pages, ...)
Gittea is a nice WebUI for viewing source files with simple issue and patch management.
bare-git is fine if you don't need any web presence.
Re: Gitlab 13.9
#7Between Gitlab,Gitea and bare-git repos, which one should I use for personal (1-man) projects? Here are my thoughts: Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution. Gitea is light weight but for any additional functionality third-party utilities are needed.
ssh $HOST git init --bare repo/foo
git remote add origin $HOST:repo/fooRe: Gitlab 13.9
#8nice work!
Re: Gitlab 13.9
#9Between Gitlab,Gitea and bare-git repos, which one should I use for personal (1-man) projects? Here are my thoughts: Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution. Gitea is light weight but for any additional functionality third-party utilities are needed.
Re: Gitlab 13.9
#10Between Gitlab,Gitea and bare-git repos, which one should I use for personal (1-man) projects? Here are my thoughts: Gitlab is resource-hungry but provides CI solutions and is kind of a setup-once-then-forget solution. Gitea is light weight but for any additional functionality third-party utilities are needed.
As I see it: GitLab has CI and a whole host of other features (artifact repositories, pages, ...) Gittea is a nice WebUI for viewing source files with simple issue and patch management. bare-git is fine if you don't need any web presence.