所以如果你像我一样,你一定已经厌倦了每次去浏览器为你的许多想法/项目创建一个 repo 并且使用 GIT rest api 语法是你的事。所以这是你的休息时间!
问问题
156 次
1 回答
-2
这是可能的最好和最短的方法——集线器
**hub** is a command-line wrapper for git that makes you better at GitHub.
安装链接——http: //hub.github.com/
you will get installation instructions first thing on the landing page
您需要像这样给它起别名,以免以后混淆或忘记该命令:
$ alias git=hub --> in the CLi
然后你就可以开始创建一个 repo,但你必须初始化 1st,如果你没有,大部分时间都会失败。
git init
然后
git create
-- 这将创建一个包含项目所在文件夹名称的存储库。
用于自定义仓库名称
git create myCustomRepoName
您还可以在创建 repo 时添加描述和主页链接
git create myCustomRepoName -d "my greatest app for the world" -h "http://prittynote.com"
您将从该站点获得更多 Cli 方法。干杯,伙计们。
于 2013-11-04T08:55:12.053 回答