#Set up a git Server
#Prerequisites
- A working Linux server machine
- You are logged in as a non-root user with sudo privileges
#Install git
If it isn't already installed, install git.
#Global configuration
Set a default initial branch name in git
Feel free to change the name master
above to anything you like. While master
is the traditional default, main
is also common.
Configure git to reconcile divergent branches by merging changes, rather than rebasing.
pull.rebase false
is a preference. But either true
or false
, the configuration option must be set.
#Create Storage Directory
You'll need a place to store any git repositories. To keep things organized, create a separate directory for them.
Your server is now ready to host git repositories. Next, you should start creating new repositories on the server that developers can pull from and push to.