Reputation: 207
I've created a repository on my GitHub.
And I'm looking at these options and I have no idea how to push my current code to the Github Repository.
When I click on clone, I move it to this folder...
But then get stuck here...
When I click the initialize option and I route to the dropbox folder...
I get this error...
I have the GitHub Mac application setup...
Isn't there just an easy button I can push to commit all the code I have in Netbeans to GitHub (without using terminal)?
Upvotes: 1
Views: 1776
Reputation: 1325437
You can do it manually, through the command line:
cd /path/to/your/repo
git remote add origin [email protected]:username/repo.git
Then relaunch your NetBeans, and you should be able to push.
You can also click on "Specify Git Repository Location:
", and enter your GitHub repo url there.
If it is an https one, it will prompt you for your GitHub username and password.
Upvotes: 1