远程GitHub存储库问题

时间:2017-06-17 06:50:57

标签: git ubuntu github repository

现在,这是我的Linux机器上文件夹的格式:

/phd_simulations
    /ns-3
    /pybindgen
    /scenario

所以ns-3,pybindgen和scenario都是自己的目录......

这是git的正确工作流程吗?目前还没有Linux桌面客户端,所以请耐心等待:

git init
git add .
git commit -m "First commit"
git remote add origin https://github.com/username/some-proj-name.git

git push

右?

当我在GitHub.com上查看存储库时,它似乎只是添加文件夹本身,而不是内容。

我还没有广泛地使用Git(仍然在学习),而且我知道我过去已经成功地完成了这项任务,所以我不知道现在的交易是什么。

1 个答案:

答案 0 :(得分:0)

只有当您的计算机本地文件夹中包含.git时,才会添加该文件夹 这将使它们成为嵌套的git repo,在这种情况下,你应该将它们作为GitHub上的灰色文件夹 请参阅“Why github display gray folder to when I create a new repository?

如果您只想要他们的文件,请移除(或移动).git,然后重新启动您的仓库(添加,提交,push --force)。
确保首先不需要那些嵌套repo的历史记录。