Resources https://stackoverflow.com/questions/2763006/make-the-current-git-branch-a-master-branch https://www.atlassian.com/git/tutorials/using-branches/merge-strategy https://stackabuse.com/git-merge-branch-into-master/ https://git-scm.com/docs/git-merge
GitLab on Ubuntu, LetsEncrypt certificate renewal
gitlab-ctl stop letsencrypt-renew gitlab-ctl start
Error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
Problem When accessing a Git server (pushing or pulling new commits), we get an error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none Analysis Apparently, the certificate of your Git server is not trusted. This usually happens if the Git
Cloning an Existing Git Repository
To clone a repository in Git just execute the following command: $ git clone [url] Example: $ git clone https://github.com/phalcon/forum Resources: