1

我有一个 android 项目,我正在研究它,目前不驻留在任何类型的源代码控制上。

我已经创建了自己的 github 帐户并在那里创建了一个存储库,现在我想提交我的 android 项目并将其推送到该存储库中。

我怎么做?

我试过做一个 git checkout 但它不起作用,并说该项目不是 git repo。

fatal: Not a git repository (or any of the parent directories): .git

有什么建议么?

4

2 回答 2

5

您需要一个可以先同步的本地 git 存储库。输入您的基本源文件夹并输入:

git init

这会初始化一个新的 git 存储库。然后你需要提交你的代码。

git add *
git commit -m "Initial commit"

现在你可以同步它了。为此,您必须将远程存储库添加到本地存储库。 https://help.github.com/articles/adding-a-remote

git remote add origin https://github.com/user/repo.git

完成此操作后,您可以使用以下命令推送本地文件:

git push origin master

其中 origin 是远程存储库的名称,而 master 是分支的名称。

Ps.:您还必须同步 SSH 密钥才能正常工作。 https://help.github.com/articles/generating-ssh-keys

编辑:如果您不确定这意味着什么,请直接前往 Github 训练营: https ://help.github.com/categories/54/articles

于 2012-12-03T10:07:48.067 回答
1

你必须初始化你的文件夹

git init
于 2012-12-03T09:38:52.283 回答