Skip to content

Instantly share code, notes, and snippets.

@adinata-id
Last active December 23, 2024 08:54
Show Gist options
  • Save adinata-id/eab4b0819bf7027db8ca22bb3b0ba0ff to your computer and use it in GitHub Desktop.
Save adinata-id/eab4b0819bf7027db8ca22bb3b0ba0ff to your computer and use it in GitHub Desktop.
First Push Repo Github
…or create a new repository on the command line
echo "# midteknologi" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/your-github-username/yourrepo.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/your-github-username/yourrepo.git
git branch -M main
git push -u origin main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment