diff --git a/general-software/git.md b/general-software/git.md index d15927e..aedf52e 100644 --- a/general-software/git.md +++ b/general-software/git.md @@ -3,14 +3,23 @@ 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. -## Git server with web interface +## Client + +The Client is pretty simple to understand. +With only a handfull of commands you should be able to get your versioning going. + +- Arch based systems: `pacman -S git` + +There is also an interactive [fixup guide by Seth Robertson](https://sethrobertson.github.io/GitFixUm/fixup.html). + +## Server with web interface Web interfaces for git are quite useful for easily showing code to other people. Additionally it is easy to collaborate together. - [Gitea](applications/gitea.md) is an open-source and selfhosted and can be dockerized. -## Git server without graphical interface +## Server without graphical interface If you don't need a bloated web-interface a more basic approach is more than enough.