Git Global Config

Add some Git global config values.


“The git config command is a convenience function that is used to set Git configuration values on a global or local project level.”

1. Log in to your server with PuTTY

You need to run the following sequence with commands only once your first login.

$ git config --global user.email "hello@wpbp.cc"
$ git config --global user.name "Krasen Slavov"
$ git config --global pack.windowMemory "100m"
$ git config --global pack.packSizeLimit "100m"
$ git config --global pack.threads "1"