我从git和GitHub开始,我正在GitHub上看一个项目。我无意中点开了叉子。现在对我来说,这似乎是一个新项目。

我对此有些怀疑:

我知道如果对我的fork repo提交或做其他事情,它将被更新,但更新的代码只有在项目作者请求pull之后才会生效。对吧? 如果我去GitHub的管理面板有一个删除选项。如果我按照上面的选项删除它,对原来的是否有影响?

我想删掉它。到目前为止,我只是在研究代码,并不真正需要fork。


当前回答

在github上删除一个存储库的简单方法:

打开要删除的存储库 然后点击settings 然后滚动到页面底部 单击“删除” 要确认删除,您需要写下要删除的github用户名和存储库名称 之后,点击“我明白后果,删除此存储库” 成功删除存储库

其他回答

在github上打开要删除的存储库,按下设置选项卡。 滚动到页面的末尾并单击删除存储库。 写下存储库的名称来确认,然后像这样点击删除:

我也在寻找这个问题的解决方案,特别是批量删除。我最终使用了这个解决方案- https://github.com/yangshun/delete-github-forks。

工作起来很有魅力!!

到目前为止,最简单的方法是登录GitHub账户:

Click to your repository for example yourUsername/yourRepository for example mbaric/zpropertyz. Then in the main toolbar of GitHub click on Settings Scroll to the bottom of the page to the section called Danger Zone and you will find Delete this repository button When you click it another pop up will appear here you need to type in your Github username and the name of your repository in this format gitHubUsername/nameOfTheRepository and click on the button below which says: I understand the consequences, delete the repository If you are having trouble doing it, below are the images that can be checked…

2020-01-15 -以下是图片。享受。

删除它对原始项目没有任何影响。编辑它只会在你的回购页面上编辑你的fork。

删除分叉存储库不会有任何伤害。你可以再把它分叉。它不会改变原始代码。流动是这样的…

1)你分叉了一个仓库。只要把它看作是另一个可以访问或更改的代码副本。这个存储库的url格式为https://github.com/your-user-name/original-repo。

2)你在你的本地机器上做一些改变,并推动它们。现在,您创建的副本将被更新,但不是您所创建的原始副本。

3)如果你想要你添加到你的分叉回购的变化被应用到原始回购(这可能对组织回购的人有帮助),那么你必须创建一个拉请求,你可以通过UI来做。然后,如果他们喜欢你的贡献,他们会把它合并到他们的代码中。

通常这就是开源组织所做的。