Last active
March 19, 2024 19:14
-
-
Save rastislavcore/99a38c091982152c6d4b2da593d51957 to your computer and use it in GitHub Desktop.
Initiate empty Git repository with CORE License
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
#!/bin/bash | |
curl https://raw.githubusercontent.com/bchainhub/core-license/master/LICENSE -o LICENSE | |
git init | |
git add LICENSE | |
git commit -m "CORE License" | |
git branch -M main | |
git remote add origin [email protected]:username/repo.git | |
git push -u origin main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment