Skip to content

Commit

Permalink
TR:yazım yanlışı düzeltildi,Eng:Arama eklendi
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetdik committed Oct 9, 2014
1 parent 4faade5 commit ca14eff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions Git Cheat Sheet-Eng.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Git Cheat Sheet English
###Index
* [Create](#create)
* [Local Changes](#local-changes)
* [Search](#search)
* [Commit History](#commit-history)
* [Branches & Tags](#branches--tags)
* [Update & Publish](#update--publish)
Expand Down Expand Up @@ -79,6 +80,19 @@ git checkout branch2
git stash pop
```

<hr>
###Search

A text search on all files in the directory:
```
$ git grep "Hello"
```

In any version of a text search:
```
$ git grep "Hello" v2.5
```

<hr>
###Commit History

Expand Down
4 changes: 2 additions & 2 deletions Git Cheat Sheet-Tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ $ git commit --amend
<hr>
###Arama

Bir metni , dizindeki bütün dosyalarda aramak:
Bir metni dizindeki bütün dosyalarda aramak:
```
$ git grep "Merhaba"
```

Bir metni , herhangi bir sürüm içinde aramak:
Bir metni herhangi bir sürüm içinde aramak:
```
$ git grep "Merhaba" v2.5
```
Expand Down

0 comments on commit ca14eff

Please sign in to comment.