Skip to content

cn666278/GitHub-Handbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

GitHub-Handbook

我与GitHub的恩怨情仇

一些值得参考的文章:

  1. GitHub上传以及常见问题

PS. 文章漏掉的一个指令:

git commit -m "first commit"


  1. GitHub上传以及后续修改上传

以下代码可用于回退commit版本

git reflog
git reset -- hard 5380189
push origin -f

【Attention!!】 此代码会强制覆盖当前分支,请注意备份

git push -u origin main -f


  1. git常见错误与操作

  1. GitHub的再次上传(修改上传、合并)
检测当前链接的远程仓库

git remote -v

【optional】(如果仓库名称不对,删除仓库)

git remote rm origin

添加新仓库并再次确认

git remote add origin https://github.com/cn666278/Java-Project.git
git remote -v

合并提交

git init
git add -A
git commit -m "update 16 Aug"
git pull
git push -u origin main

About

我与GitHub的恩怨情仇

Resources

Stars

Watchers

Forks

Packages

No packages published