mirror of
https://github.com/namibia/tips.git
synced 2024-11-15 17:47:12 +00:00
add change by content search tip
This commit is contained in:
parent
c98730cb76
commit
81f9099a1f
@ -13,6 +13,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
|
|||||||
<!-- Don’t remove or change the comment above – that can break automatic updates. -->
|
<!-- Don’t remove or change the comment above – that can break automatic updates. -->
|
||||||
* [Everyday Git in twenty commands or so](#everyday-git-in-twenty-commands-or-so)
|
* [Everyday Git in twenty commands or so](#everyday-git-in-twenty-commands-or-so)
|
||||||
* [Show helpful guides that come with Git](#show-helpful-guides-that-come-with-git)
|
* [Show helpful guides that come with Git](#show-helpful-guides-that-come-with-git)
|
||||||
|
* [Search change by content](#search-change-by-content)
|
||||||
* [Overwrite pull](#overwrite-pull)
|
* [Overwrite pull](#overwrite-pull)
|
||||||
* [List of all files till a commit](#list-of-all-files-till-a-commit)
|
* [List of all files till a commit](#list-of-all-files-till-a-commit)
|
||||||
* [Git reset first commit](#git-reset-first-commit)
|
* [Git reset first commit](#git-reset-first-commit)
|
||||||
@ -179,6 +180,11 @@ git help everyday
|
|||||||
git help -g
|
git help -g
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Search change by content
|
||||||
|
```sh
|
||||||
|
git log -S'<a term in the source>'
|
||||||
|
```
|
||||||
|
|
||||||
## Overwrite pull
|
## Overwrite pull
|
||||||
```sh
|
```sh
|
||||||
git fetch origin && git reset --hard origin/master
|
git fetch origin && git reset --hard origin/master
|
||||||
|
@ -4,6 +4,9 @@
|
|||||||
}, {
|
}, {
|
||||||
"title": "Show helpful guides that come with Git",
|
"title": "Show helpful guides that come with Git",
|
||||||
"tip": "git help -g"
|
"tip": "git help -g"
|
||||||
|
}, {
|
||||||
|
"title": "Search change by content",
|
||||||
|
"tip": "git log -S'<a term in the source>'"
|
||||||
}, {
|
}, {
|
||||||
"title": "Overwrite pull",
|
"title": "Overwrite pull",
|
||||||
"tip": "git fetch origin && git reset --hard origin/master"
|
"tip": "git fetch origin && git reset --hard origin/master"
|
||||||
|
Loading…
Reference in New Issue
Block a user