github小记(一):清除github在add或者commit之后缓存区

github清除在add或者commit之后缓存区

  • 前言
  • [1. 第一步之后想要撤销](#1. 第一步之后想要撤销)
  • [2. 第二步之后想要撤销](#2. 第二步之后想要撤销)
    • [a. 改变一下rrr.txt的内容](#a. 改变一下rrr.txt的内容)
    • [b. 想提交本地文件的test文件夹](#b. 想提交本地文件的test文件夹)
    • [c. 我后悔了突然不想提交了](#c. 我后悔了突然不想提交了)

前言

github自用

一般github上代码提交顺序:

第一步:

bash 复制代码
git add .
or
git add home/.../.../file_name
or
git add home/.../.../file_name -f

第二步:

bash 复制代码
git commit -m "test..."

第三步:

bash 复制代码
git push

1. 第一步之后想要撤销

使用git reset .命令

效果展示:

bash 复制代码
xxxxxx@server:~/xxxxxx/test_rm_cache$ git add test/1rrr.txt -f
xxxxxx@server:~/xxxxxx/test_rm_cache$ git status
On branch main
Your branch is up-to-date with 'origin/main'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
      new file:   test/1rrr.txt

xxxxxx@server:~/xxxxxx/test_rm_cache$ git reset .
xxxxxx@server:~/xxxxxx/test_rm_cache$ git status
On branch main
Your branch is up-to-date with 'origin/main'.

nothing to commit, working tree clean

2. 第二步之后想要撤销

github的内容:

本地文件:

a. 改变一下rrr.txt的内容

bash 复制代码
xxxxxx@server:~/xxxxxx/test_rm_cache$ git add .
xxxxxx@server:~/xxxxxx/test_rm_cache$ git status
On branch main
Your branch is up-to-date with 'origin/main'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
      modified:   rrr.txt

xxxxxx@server:~/xxxxxx/test_rm_cache$ git commit -m "test1"
[main 6e51030] test1
 1 file changed, 1 insertion(+)
 
xxxxxx@server:~/xxxxxx/test_rm_cache$ git push
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 24 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 244 bytes | 244.00 KiB/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local object.
To github.com:ZisongXu/test_rm_cache.git
   942633e..6e51030  main -> main
xxxxxx@server:~/xxxxxx/test_rm_cache$

github内容:

本地文件:

b. 想提交本地文件的test文件夹

bash 复制代码
xxxxxx@server:~/xxxxxx/test_rm_cache$ git add test/1rrr.txt -f
xxxxxx@server:~/xxxxxx/test_rm_cache$ git status
On branch main
Your branch is up-to-date with 'origin/main'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
      new file:   test/1rrr.txt

xxxxxx@server:~/xxxxxx/test_rm_cache$ git commit -m "test2"
[main 9375ba3] test2
 1 file changed, 2 insertions(+)
 create mode 100644 test/1rrr.txt
 
xxxxxx@server:~/xxxxxx/test_rm_cache$ git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
  (use "git push" to publish your local commits)

nothing to commit, working tree clean
xxxxxx@server:~/xxxxxx/test_rm_cache$

c. 我后悔了突然不想提交了

bash 复制代码
xxxxxx@server:~/xxxxxx/test_rm_cache$ git reset HEAD~
xxxxxx@server:~/xxxxxx/test_rm_cache$ git reset --hard HEAD
HEAD is now at 6e51030 test1
sc19zx@server:~/apptainers/test_rm_cache$ git status
On branch main
Your branch is up-to-date with 'origin/main'.

nothing to commit, working tree clean
xxxxxx@server:~/xxxxxx/test_rm_cache$ git push
Everything up-to-date
xxxxxx@server:~/xxxxxx/test_rm_cache$

github内容:

本地文件:

相关推荐
KuaFuAI34 分钟前
微软推出的AI无代码编程微应用平台GitHub Spark和国产AI原生无代码工具CodeFlying比到底咋样?
人工智能·github·aigc·ai编程·codeflying·github spark·自然语言开发软件
爱吃土豆的马铃薯ㅤㅤㅤㅤㅤㅤㅤㅤㅤ41 分钟前
Elasticsearch的查询语法——DSL 查询
大数据·elasticsearch·jenkins
A陈雷42 分钟前
springboot整合elasticsearch,并使用docker desktop运行elasticsearch镜像容器遇到的问题。
spring boot·elasticsearch·docker
Make_magic43 分钟前
Git学习教程(更新中)
大数据·人工智能·git·elasticsearch·计算机视觉
运维小文1 小时前
服务器硬件介绍
运维·服务器·计算机网络·缓存·硬件架构
日里安1 小时前
8. 基于 Redis 实现限流
数据库·redis·缓存
Elastic 中国社区官方博客2 小时前
使用真实 Elasticsearch 进行更快的集成测试
大数据·运维·服务器·数据库·elasticsearch·搜索引擎·集成测试
Mr_Xuhhh3 小时前
递归搜索与回溯算法
c语言·开发语言·c++·算法·github
jerry6098 小时前
7天用Go从零实现分布式缓存GeeCache(改进)(未完待续)
分布式·缓存·golang
SafePloy安策11 小时前
ES信息防泄漏:策略与实践
大数据·elasticsearch·开源