如何从本地终端创建Github存储库?
更新:
我们必须创建存储库并将数据从一个应用程序上传到github,而不是在应用程序系统中存储任何数据......这是可能的
实际上,很多用户都会登录此应用程序。他们将在预览框中输入代码并检查结果。用户可以将此代码存储到github。
答案 0 :(得分:5)
您可以使用hub。
hub create repo
答案 1 :(得分:0)
Defunkt's hub
tool可以做到这一点
答案 2 :(得分:0)
您不是创建Github存储库,而是创建Git存储库。然后可以将它与Github一起用作远程。如果您在Github上创建了存储库,则可以使用以下命令将本地存储库与Github远程连接:
$ mkdir ~/Hello-World
# Creates a directory for your project called "Hello-World" in your user directory
$ cd ~/Hello-World
# Changes the current working directory to your newly created directory
$ git init# Sets up the necessary Git files
# Initialized empty Git repository in /Users/you/Hello-World/.git/
$ git remote add origin https://github.com/username/Hello-World.git
# Creates a remote named "origin" pointing at your GitHub repository
$ git push origin master
# Sends your commits in the "master" branch to GitHub
答案 3 :(得分:-1)
http://git-scm.com/book/en/Git-on-the-Server-Setting-Up-the-Server 从本地服务器设置git的完整教程。