i'm trying to upload files with GitHub CLI but i'm enable to know tasks i have to perform
i can upload with git CLI (before i created the Github repo manually with webbrowser)
git init <myRepo> // create a local repo
cd <myRepo>
// writing README file for a test
git add README // to mark this file for next upload
git commit -m "msg for the test"
git remote add origin https://github.com/MYUSER/MYREPO.git
git push origin master // main does not work
it's okay with this, but using Github CLI... i'm not able to find steps and/or commands.
english is not my natural language, i'm a newbie with Github (so i don't know what is the meaning for words like pull, pull request, or others) and i did not see a step by step inside official website
when i create a Github repo with
gh repo create MYREPO --public
it does not create the same folder inside my local computer.
it does not create the .git folder inside MYREPO
do i need to perform more than gh release create MYREPO MYFILE?
any help please?