Last active
December 23, 2024 08:54
-
-
Save adinata-id/eab4b0819bf7027db8ca22bb3b0ba0ff to your computer and use it in GitHub Desktop.
First Push Repo Github
This file contains hidden or 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
…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