개발환경 설정/Git
Get Started With Git CLI
amugae
2019. 5. 19. 16:17
You can make repository using git API
curl -u 'USER' https://api.github.com/user/repos] -d '{"name":"REPO"}'
# Remember replace USER with your username and REPO with your repository/application name! git remote add origin git@github.com:USER/REPO.git git push origin master