How do I show my global Git configuration?

You can use: git config –list or look at your ~/.gitconfig file. The local configuration will be in your repository’s .git/config file. Use: git config –list –show-origin to see where that setting is defined (global, user,...

GitLab and SSH keys

Git is a distributed version control system, which means you can work locally but you can also share or “push” your changes to other servers. Before you can push your changes to a GitLab server you need a secure communication channel for sharing...