I started learning java on hyperskill/ Jetbrains academy and finished my 1st project. How to upload it into github if I didn't use IDE, only built in code editor?
Searched info on github and hyperskill but unsuccessful...
I started learning java on hyperskill/ Jetbrains academy and finished my 1st project. How to upload it into github if I didn't use IDE, only built in code editor?
Searched info on github and hyperskill but unsuccessful...
A simple approach is to install the GitHub CLI gh, and authenticate with gh auth login
From there, you can go to your local repository folder, and use gh repo create
to:
That is:
# create a remote repository from the current directory
gh repo create my-project --private --source=. --remote=upstream