mirror of
https://github.com/namibia/tips.git
synced 2024-11-13 08:46:29 +00:00
Using revert and reset
This commit is contained in:
parent
de65ecb886
commit
4cdc87f48e
12
README.md
12
README.md
@ -19,6 +19,8 @@
|
||||
* [Delete local branch](https://github.com/git-tips/tips#delete-local-branch)
|
||||
* [Delete remote branch](https://github.com/git-tips/tips#delete-remote-branch)
|
||||
* [Undo local changes with the last content in head](https://github.com/git-tips/tips#undo-local-changes-with-the-last-content-in-head)
|
||||
* [Revert: Undo a commit by creating a new commit](https://github.com/git-tips/tips#revert-undo-a-commit-by-creating-a-new-commit)
|
||||
* [Resert: Discard commits, advised for private branch](https://github.com/git-tips/tips#resert-discard-commits-advised-for-private-branch)
|
||||
* [Reword the previous commit message](https://github.com/git-tips/tips#reword-the-previous-commit-message)
|
||||
* [Changing a remote's URL](https://github.com/git-tips/tips#changing-a-remotes-url)
|
||||
* [Get list of all remote references](https://github.com/git-tips/tips#get-list-of-all-remote-references)
|
||||
@ -134,6 +136,16 @@ git push origin :<remote_branchname>
|
||||
git checkout -- <file_name>
|
||||
```
|
||||
|
||||
## Revert: Undo a commit by creating a new commit
|
||||
```sh
|
||||
git revert <commit-ish>
|
||||
```
|
||||
|
||||
## Resert: Discard commits, advised for private branch
|
||||
```sh
|
||||
git reset <commit-ish>
|
||||
```
|
||||
|
||||
## Reword the previous commit message
|
||||
```sh
|
||||
git commit -v --amend
|
||||
|
@ -64,6 +64,14 @@
|
||||
"title": "Undo local changes with the last content in head",
|
||||
"tip": "git checkout -- <file_name>"
|
||||
},
|
||||
{
|
||||
"title":"Revert: Undo a commit by creating a new commit",
|
||||
"tip":"git revert <commit-ish>"
|
||||
},
|
||||
{
|
||||
"title":"Resert: Discard commits, advised for private branch",
|
||||
"tip":"git reset <commit-ish>"
|
||||
},
|
||||
{
|
||||
"title": "Reword the previous commit message",
|
||||
"tip": "git commit -v --amend"
|
||||
|
Loading…
Reference in New Issue
Block a user