Skip to content

Instantly share code, notes, and snippets.

@ChristopherA
Last active March 16, 2017 02:01
Show Gist options
  • Save ChristopherA/ec9a25d4d523c68af44d774e7d58514c to your computer and use it in GitHub Desktop.
Save ChristopherA/ec9a25d4d523c68af44d774e7d58514c to your computer and use it in GitHub Desktop.
New Github repo standard commands
echo "# MY REPO TITLE #" >> README.md
git init
git add README.md
# curl https://gist.githubusercontent.com/ChristopherA/825d5841727e3c7bb6add2a65f19be51/raw/db3b4b4d08ce283e815e47d3cee105c46f8bad29/LICENSE-CC-BY-SA-4.0.md > LICENSE-CC-BY-SA-4.0.md
# curl https://gist.githubusercontent.com/ChristopherA/40acbb0276618a766badacd075d8a436/raw/1b43eaee17effa25c81cfed697ee3e18ac84de2c/LICENSE-CC-BY-4.0.md > LICENSE-CC-BY-4.0.md
git config user.name "Christopher Allen"
git config user.email "ChristopherA@LifeWithAlacrity.com"
# git config user.email "ChristopherA@Blockstream.com"
git config commit.gpgsign true
git config user.signingkey 357405ED #ChristopherA@LifeWithAlacrity.confirmations
# git config user.signingkey FDA6C78E #ChristopherA@Blockstream.com
git commit -a -S -m "Initial Commit of 'MY REPO TITLE'"
git remote add origin git@github.com:ChristopherA/MY-REPO-.git
git push -u origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment