We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Story: After I init my repo, I want to link it to github and push it
Two step (if not already linked to github)
git remote add origin https://github.com/:owner/:repo.git
I test it with basic authentication (ie. https://username:passOrToken@...) https://github.com/mesopelagique/Gihub.4d#create-an-organization-repository
$github:=github.API.new() $github.authBasic("username";"password or token")
$result:=$github.create(github.Repository.new(New object("name"; "MyRepo"))
(It is possible to create under an organisation, also set private directly with special info in api)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Two step (if not already linked to github)
git remote add origin https://github.com/:owner/:repo.git
(if origin is already taken, github)I test it with basic authentication (ie. https://username:passOrToken@...)
https://github.com/mesopelagique/Gihub.4d#create-an-organization-repository
(It is possible to create under an organisation, also set private directly with special info in api)
The text was updated successfully, but these errors were encountered: