This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate a unique private key (KEY) | |
sudo openssl genrsa -out xxx.local.key 2048 | |
# Generating a Certificate Signing Request (CSR) | |
sudo openssl req -new -key xxx.local.key -out xxx.local.csr | |
# Creating a Self-Signed Certificate (CRT) | |
sudo openssl x509 -req -days 365 -in xxx.local.csr -signkey mydomain.key -out xxx.local.crt | |
# Append KEY and CRT to xxx.local.pem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
downstream github | |
git remote add <upstream>/<repo> ssh://[email protected]/<upstream>/<repo>.git | |
git fetch <upstream>/<repo> | |
git checkout master | |
git merge remotes/<upstream>/<repo>/master | |
sync submodules | |
git submodule update --init --recursive |