Created
December 22, 2024 09:48
-
-
Save bkataru/1a21809bab0c3960bfb9fc4f92837f99 to your computer and use it in GitHub Desktop.
scaffolding for bkataru-recreations
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
| Write-Host "Creating .vscode" | |
| New-Item -Path .\.vscode -ItemType Directory | Out-Null | |
| Write-Host "Creating .vscode\settings.json" | |
| New-Item -Path .\.vscode\settings.json -ItemType File | Out-Null | |
| Write-Host "Creating .gitignore" | |
| New-Item -Path .\.gitignore -ItemType File | Out-Null | |
| Write-Host "Creating README.md" | |
| New-Item -Path .\README.md -ItemType File | Out-Null | |
| Write-Host "Initializing empty Git repository" | |
| Write-Host "..." | |
| git init | |
| Write-Host "Good to go!" |
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
| #!/bin/sh | |
| echo "creating .vscode" | |
| mkdir .vscode | |
| echo "creating .vscode/settings.json" | |
| touch .vscode/settings.json | |
| echo "creating .gitignore" | |
| touch .gitignore | |
| echo "creating README.md" | |
| touch README.md | |
| echo "initializing empty Git repository..." | |
| git init |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment