github删除自己的库--Deleting a repository

You can delete any repository or fork if you‘re either an organization owner or have admin permissions for the repository or fork. Deleting a forked repository does not delete the upstream repository.

Only members with owner privileges for an organization or admin privileges for a repository can delete an organization repository. If Allow members to delete or transfer repositories for this organization has been disabled, only organization owners can delete organization repositories. For more information, see "Repository permission levels for an organization."

Warning: These steps will permanently delete the repository, wiki, issues, and comments. This action cannot be undone.

Please also keep in mind that:

Deleting a private repository will delete all of its forks.

Deleting a public repository will not delete its forks.

On GitHub, navigate to the main page of the repository.

Under your repository name, click Settings.

Repository settings button

Under Danger Zone, click Delete this repository.

Repository deletion button

Read the warnings.

To verify that you‘re deleting the correct repository, type the name of the repository you want to delete.

Deletion labeling

Click I understand the consequences, delete this repository.

官方教程:

https://help.github.com/en/articles/deleting-a-repository

原文地址:https://www.cnblogs.com/allyh/p/10987094.html

时间: 2024-10-08 20:03:25

github删除自己的库--Deleting a repository的相关文章

100个Github上Android开源库

项目名称 项目简介 1. react-native 这个是 Facebook 在 React.js Conf 2015 大会上推出的基于 JavaScript 的开源框架 React Native, 该框架结合了 Web 应用和 Native 应用的优势, 可以使用 JavaScript 来开发 iOS 和 Android 原生应用 2.Android-Universal-Image-Loader ImageLoader 是最早开源的 Android 图片缓存库, 强大的缓存机制, 早期被广泛

github删除仓库

一.github重命名仓库 有时候GitHub上创建仓库名,打算想修改仓库名.操作如下: 1.点击repositories(仓库),选择你要重命名的项目 2.code这一行导航栏 ,选择settings,修改仓库名称,再点击rename. 二.github删除仓库 有时候GitHub上创建仓库名,打算想删除仓库.操作如下: 1.点击repositories(仓库),选择你要删除的项目 2.code这一行导航栏 ,选择settings,一直拉到最后,点击Delete this repository

开源项目成熟度分析工具-利用github api获取代码库的信息

1.github api github api是http形式的api,功能还是比较丰富的,博主因为项目的原因主要用到的是提取project信息这项功能,返回的数据是JSON格式. api页:https://developer.github.com/v3/ Options: (H) means HTTP/HTTPS only, (F) means FTP only --anyauth Pick "any" authentication method (H) -a, --append Ap

Github实例教程-创建库、创建主页

以README文件为实例,详细介绍github的使用过程 请先下载git,然后配置以下内容: ( 我的系统是debian,其他版本的UNIX/Linux有差别),windows的暂时不清楚. (一) 1.先下载git $ apt-get install git-core 2.创建git用户名(Username),首先你要告诉git你的名字,这样它才能正确的给你提交的的东西打上标签. (First you need to tell git your name, so that it can pro

批量删除mysql一个库所有数据表方法

批量删除mysql一个库所有数据表方法 删除表的命令 drop table 表名; 如果有100张表,手工执行100次,想想就崩溃. 下面提供一个使用information_schema库的方案来批量删除数据表:SELECT CONCAT('drop table ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='数据库名'; 如通过这条命令来得到drop table 表名;这样的语句,然后批量执行.mys

如何删除GitHub中已经建好的仓库(repository)

我们有时候可能需要清理 GitHub 中一些不维护的或不需要的项目,此时就要用到delete操作了,很多新手可能不知道如何删除已有仓库,下面将简单介绍下,需要注意的是删除操作不能恢复,一旦执行此操作,则意味着永远消失,一定要谨慎次操作!!!! 1. 进入该仓库页面,选择 setting 选项,如图 1 所示. 图1 setting选项 2. 进入setting 选项后,一直向下滑动,直至最下面,如图 2 所示. 图2 点击Delete this repository 3. 进入Delete th

如何用Github删除repository

第一步,登陆github,一定要点开要删除的repository,再选择相应的setting: 第二步,下拉选择,delete this repository 第三步,输入删除的仓库名,删除repository  ps : 此仓库删除完成,自己创建的仓库和fork的仓库是同样的删除方法 原文地址:https://www.cnblogs.com/asunwei/p/9533046.html

github 删除仓库 repository

1.点开想要删除的仓库 2点击setting 3.拉到最下面 4.点击 Delete this repository 5.输入想删除仓库的名字 点击

github删除fork项目

最近在github上浏览,不小心fork了一个项目.想删除,费了一点周折.现在记录下来. 1.点击选择fork的项目.我的fork项目已经删掉了.以es-ik为例. 2.进入后,点击Settings 3.进入页面后,点击Delete this repository 4.输入awnuxkjy/es-ik,选择"I understand the consequences,delete this repository" ok,搞定!