mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
656 B
19 lines
656 B
5 years ago
|
# Git
|
||
|
|
||
|
Git is probably the best version control system (VCS) there is.
|
||
|
It's easy and can be lightweight, but also has tons of possibilities for using graphical (/web) user interfaces.
|
||
|
|
||
5 years ago
|
## Git server with web interface
|
||
5 years ago
|
|
||
|
Web interfaces for git are quite useful for easily showing code to other people.
|
||
|
Additionally it is easy to collaborate together.
|
||
|
|
||
5 years ago
|
- [Gitea](applications/gitea.md) is an open-source and selfhosted and can be dockerized.
|
||
5 years ago
|
|
||
5 years ago
|
## Git server without graphical interface
|
||
5 years ago
|
|
||
5 years ago
|
If you don't need a bloated web-interface a more basic approach is more than enough.
|
||
|
|
||
|
- [git-server-docker](setups/bare-git.md) is a pretty basic docker-container for git.
|
||
5 years ago
|
|