Skip to content

Instantly share code, notes, and snippets.

@danielscarvalho
Created February 24, 2024 02:36
Show Gist options
  • Save danielscarvalho/99aa12f46e74f93a3682c123493045ca to your computer and use it in GitHub Desktop.
Save danielscarvalho/99aa12f46e74f93a3682c123493045ca to your computer and use it in GitHub Desktop.
Upload the current project folder to a new repo at GitHub
echo "# Project-Name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:danielscarvalho/<New Project Name>.git
git push -u origin main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment