作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个奇怪的问题:
$ cd ~/htdocs
$ mkdir test
$ cd test
$ git init
Initialized empty Git repository in /home/deep/htdocs/test/.git/
$ git checkout master
error: pathspec 'master' did not match any file(s) known to git.
$ git checkout -b master
fatal: You are on a branch yet to be born
$ git checkout origin/master
error: pathspec 'origin/master' did not match any file(s) known to git.
$ git branch -a
(empty this)
但这是新的本地空仓库。 master 分支在哪里?
最佳答案
一如既往,Git 是对的,它只是用一种古怪的方式表达它:当您创建存储库时,master 分支实际上还不存在,因为它没有任何指向。
您是否尝试过在 git init
之后提交一些东西?当然,添加一个 Remote 并从中 pull 出也可以。
关于git - 你在尚未诞生的 Twig 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24001587/
我是一名优秀的程序员,十分优秀!