github 上传与删除项目

Posted sineik

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github 上传与删除项目相关的知识,希望对你有一定的参考价值。

在github上创建好仓库后,在本地创建一个仓库 

1.先要初始化本地仓库  

git config --global user.name you name

git config --global user.email you email

 2.添加密钥

1.生成密钥

ssh-keygen -t rsa -C "your name"  #引号里输入你的用户名

2.查看密钥,使用 cat ,复制密钥

3.在github上添加密钥

     点击用户头像   --setting   -- ssh and GPG keys

 3.上传

git init

把项目移动本地仓库

git add .

git commit -m 提交

git remote add origin  <you  rep url>

git push

 4.删除

git rm -r --cached <文件>

git commit -m ‘删除

git push

 

以上是关于github 上传与删除项目的主要内容,如果未能解决你的问题,请参考以下文章

github上传的源代码怎么删除

git 上传代码到GitHub 以及git删除github上文件和文件的命令

如何在github上传和删除项目

在GitHub上删除项目后,在IDEA上传项目依然提示project is already on github

github 删除远程仓库项目中的任意文件夹

使用 vscode将本地项目上传到github从github克隆项目以及删除github上的某个文件夹