This file contains hidden or 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
; registry entry for rmc "Clone here" | |
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\shell\git-clone] | |
@="Clone here" | |
[HKEY_CLASSES_ROOT\Directory\shell\git-clone\command] | |
@="Powershell -NoProfile -Command \"Set-Location -LiteralPath '%V' ; git clone $(Get-Clipboard)\"" |
This file contains hidden or 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
git init && git add . && git commit -m 'start' | |
gh repo create %1 --private | |
git remote add origin [email protected]:kingma-sbw/%1.git | |
git push -u origin main |
This file contains hidden or 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
version: "3" | |
# Defines which compose version to use | |
services: | |
# Services line define which Docker images to run. In this case, it will be MySQL server and WordPress image. | |
db: | |
image: mariadb:10.7.3 | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: MyR00tMySQLPa$$5w0rD | |
MYSQL_DATABASE: MyWordPressDatabaseName |