Skip to content

Instantly share code, notes, and snippets.

@rastislavcore
Last active March 19, 2024 19:14
Show Gist options
  • Save rastislavcore/99a38c091982152c6d4b2da593d51957 to your computer and use it in GitHub Desktop.
Save rastislavcore/99a38c091982152c6d4b2da593d51957 to your computer and use it in GitHub Desktop.
Initiate empty Git repository with CORE License
#!/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 git@github.com: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