为什么我的新文件没有出现在我的 GitHub 存储库中?

发布于 2024-11-17 06:20:19 字数 130 浏览 0 评论 0原文

我已经创建了一个存储库,现在我已经处理了大约 5 个源文件,但它们没有出现在网上。我如何上传它们/使它们在线显示。

其次,如何允许其他人使用该存储库?我的意思是,该项目是一个四人的项目,那么其他人如何加入以及我如何控制上传的文件?

I have created a repository, now I have worked on about 5 source files but they dont appear online. How do I upload them/make them show online.

Secondly, how do I allow other people to use the repository? What I mean is, the project is a four-person thing so how do the others join and how do I control uploaded files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林迷了鹿 2024-11-24 06:20:19

首先,您需要在本地提交更改,然后才能结束推送以将您的存储库与 github 上的存储库同步,例如

git add .
git commit -m "Some changes"
git push origin master

First you need to commit your changes locally before you end off with push to sync your repository with the one on github, e.g.

git add .
git commit -m "Some changes"
git push origin master
忘你却要生生世世 2024-11-24 06:20:19

您需要提交并推送您的更改,以便它们显示在网上。假设您已经按照 GitHub 为您提供的步骤将本地存储库链接到远程主控,这可以通过一个简单的操作来完成

git add .
git commit
git push

并且添加其他贡献者也不是太棘手,只需转到项目,单击右上角的“管理”按钮角,单击“协作者”选项卡,然后添加他们的 github 帐户。

这确实是一个可以通过精彩的 git 和 github 文档轻松回答的问题。查看 http://help.github.com/ 了解所有这些以及更多内容。 StackOverflow 适用于有关编程的问题,而不是有关如何设置存储库的问题(并且它也不应用于可以通过现有文档轻松回答的问题)。

You need to commit and push your changes for them to show up online. Assuming you have already followed the steps GitHub gives you to link your local repository to the remote master, this is accomplished with a simple

git add .
git commit
git push

And adding additional contributors isn't too tricky, just go to the project, click the Admin button in the upper right corner, click the Collaborators tab, and add their github accounts.

This is really a question that is easily answered by the wonderful git and github documentation. Check out http://help.github.com/ for all of this and more. StackOverflow is for questions about programming, not about how to set up repositories (and it also shouldn't be used for questions that can be easily answered by existing documentation).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文