This commit is contained in:
autistic-symposium-helpers 2024-10-15 10:02:32 +09:00 committed by GitHub
parent b0a4e417ee
commit 8eb026b445
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,41 +2,43 @@
<br> <br>
---
### reset all commits ### reset all commits
<br> <br>
#### check out to a temporary branch: ##### check out to a temporary branch:
``` ```
git checkout --orphan TEMP_BRANCH git checkout --orphan TEMP_BRANCH
``` ```
#### add all the files: ##### add all the files:
``` ```
git add -A git add -A
``` ```
#### commit the changes: ##### commit the changes:
``` ```
git commit -am "🛹👾" git commit -am "(:"
``` ```
#### delete the old branch: ##### delete the old branch:
``` ```
git branch -D main git branch -D main
``` ```
#### rename the temporary branch to `main`: ##### rename the temporary branch to `main`:
``` ```
git branch -m main git branch -m main
``` ```
#### finally, force update to our repository: ##### finally, force update to our repository:
``` ```
git push -f origin main git push -f origin main
@ -44,6 +46,32 @@ git push -f origin main
<br> <br>
---
### reverting back to an older commit
<br>
```shell
git reset --hard HEAD~N
```
or
```shell
git reset --hard COMMIT
```
and then
```shell
git push origin master --force
```
<br>
--- ---
### delete all local branches ### delete all local branches
@ -62,7 +90,7 @@ git branch | grep -v "main" | xargs git branch -D
<br> <br>
#### error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 ##### error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
```shell ```shell
git config http.postBuffer 524288000 git config http.postBuffer 524288000