如何使用 Xcode 4 克隆到远程 git 存储库
亲爱的大家,我正在尝试将我的代码上传到 sourceforge.net 上的 git 存储库。我使用 Xcode 4 的版本编辑器制作了一个本地 git 存储库来管理我的代码。现在,我想将我的代码发布到远程存储库。
我正在尝试克隆它。当我尝试在 Xcode 4 中使用克隆命令时。在我看来,它仅用于克隆到本地驱动器。
我从命令行尝试过。它说我正在尝试克隆一个空存储库。
有人可以帮忙吗?
Dear all I'm trying to upload my code to a git repository at sourceforge.net. I used Xcode 4's version editor to make a local git repository to manage my code. Now, I want to release my code to the remote repository.
I'm trying to clone it. When I try to use the clone command in Xcode 4. It seems to me its only for cloning into local drive.
I tried from the command line. its says that I'm trying to clone a empty repository.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了将代码从 Xcode 项目上传到 sourceforge,您需要推送内容,而不是从 sourceforge 克隆空存储库。请记住,在尝试将内容推送到 sourceforge 之前,您应该将所有文件添加并提交到本地 git 存储库。在命令行上,使用 git add * 和 git commit -m 'My commit message 将它们全部添加并签入(或 Xcode 4 中的等效命令)。
这取自 http://sourceforge.net/apps/trac/sourceforge/wiki/Git :
In order to upload your code from an Xcode project into sourceforge, you want to push the content, not clone the empty repository from sourceforge. Remember that you should be adding and committing all your files to your local git repository before trying to push content to sourceforge. On the command line, use
git add *
andgit commit -m 'My commit message
to get them all added and checked in (or the equivalent commands in Xcode 4).This is taken from http://sourceforge.net/apps/trac/sourceforge/wiki/Git: