{"id":2674,"date":"2011-01-22T23:09:39","date_gmt":"2011-01-22T17:39:39","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=2674"},"modified":"2016-12-19T15:29:49","modified_gmt":"2016-12-19T09:59:49","slug":"git-grep","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/git-grep\/","title":{"rendered":"Git &#8211; Grep"},"content":{"rendered":"<p>Still in my early days of using Git.\u00a0Recently just to make sure that I have merged two branches \u00a0and have pushed changes to QA server successfully,I often used command &#8220;<span style=\"font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;\">find | xargs grep<\/span>&#8221; .But to deal with this kind of situations Git provides &#8220;grep&#8221; command. Just as name suggests this commands searches for regex pattern passed to it.<\/p>\n<p>[shell] git grep &amp;quot;regex&amp;quot; [\/shell]<\/p>\n<p>Example &#8211; To find usage of word &#8220;collections&#8221; \u00a0in each file.<\/p>\n<p>[shell] git grep &#8211;ignore-case &amp;quot;collections&amp;quot;[\/shell]<\/p>\n<p>output :<\/p>\n<p>[shell]ReadMe.txt:groovy Collections<br \/>\nReadMe.txt:nice collections<br \/>\n[\/shell]<\/p>\n<p>Now this just described which of project files have word &#8216;list&#8217; in it and how many times.One can also use -c option to count occurrences \u00a0of word &#8220;collections&#8221;<\/p>\n<p>[shell]git grep &#8211;ignore-case -c &amp;quot;collections&amp;quot;[\/shell]<\/p>\n<p>Output:<\/p>\n<p>[shell]ReadMe.txt:2[\/shell]<\/p>\n<div id=\"_mcePaste\">\n<div>Now a question \u00a0why I am not using command (and favoring &#8220;git grep&#8221;)<\/div>\n<div>[shell]find | xargs grep -y &amp;quot;collections&amp;quot;[\/shell]<\/p>\n<\/div>\n<div>which will easily do the same for me and would perhaps list some extra \u00a0files (which are not exactly part of my app). Now here come the answer with &#8220;git grep&#8221; I can also search in previous versions of my project.<\/div>\n<div>Example<\/div>\n<div>[shell]git grep &#8211;ignore-case \u00a0&amp;quot;collections&amp;quot; ea145f1[\/shell]<\/p>\n<\/div>\n<div>output :<\/div>\n<div>[shell] ea145f1:ReadMe.txt:groovy Collections[\/shell]<\/p>\n<\/div>\n<div>It searches for word &#8220;collections&#8221; in my previous commits . (As second line in file ReadMe.txt was added after commit numbered ea145f1) .Simply awesome.And this is \u00a0not it. \u00a0To explore more visit. <a href=\"http:\/\/www.kernel.org\/pub\/software\/scm\/git\/docs\/git-grep.html\">git grep manual page<\/a> or the git community book which is maintained by Scott Chacon<\/div>\n<div>_________________________________<\/div>\n<div>\n<p><em>Hitesh Bhatia<\/em><a href=\"mailto:hitesh@intelligrape.com?subject=Feedback%20On%20Blog\"><\/a><\/p>\n<p>Mail,LinkedIn,<a href=\"http:\/\/www.facebook.com\/home.php?#%21\/profile.php?id=100000114437286\" target=\"_blank\">Facebook<\/a>,<a href=\"http:\/\/twitter.com\/d1_ricky\" target=\"_blank\">Twitter<\/a><\/p>\n<p>_________________________________<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Still in my early days of using Git.\u00a0Recently just to make sure that I have merged two branches \u00a0and have pushed changes to QA server successfully,I often used command &#8220;find | xargs grep&#8221; .But to deal with this kind of situations Git provides &#8220;grep&#8221; command. Just as name suggests this commands searches for regex pattern [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":6,"footnotes":""},"categories":[1],"tags":[375,503,459],"class_list":["post-2674","post","type-post","status-publish","format-standard","hentry","category-technology","tag-git","tag-github","tag-grep"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command &quot;find | xargs grep&quot; .But to deal with this kind of situations Git provides &quot;grep&quot; command. Just as name suggests this commands searches for regex pattern\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Hitesh Bhatia\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/git-grep\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Git \u2013 Grep | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command &quot;find | xargs grep&quot; .But to deal with this kind of situations Git provides &quot;grep&quot; command. Just as name suggests this commands searches for regex pattern\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/git-grep\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Git \u2013 Grep | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command &quot;find | xargs grep&quot; .But to deal with this kind of situations Git provides &quot;grep&quot; command. Just as name suggests this commands searches for regex pattern\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#article\",\"name\":\"Git \\u2013 Grep | TO THE NEW Blog\",\"headline\":\"Git &#8211; Grep\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2011-01-22T23:09:39+05:30\",\"dateModified\":\"2016-12-19T15:29:49+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#webpage\"},\"articleSection\":\"Technology, git, github, grep\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#listItem\",\"name\":\"Git &#8211; Grep\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#listItem\",\"position\":3,\"name\":\"Git &#8211; Grep\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/\",\"name\":\"Hitesh Bhatia\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/480688fa251da2d21002803e0b349c1fe911842715b972676a1aa3cb12808e58?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Hitesh Bhatia\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/\",\"name\":\"Git \\u2013 Grep | TO THE NEW Blog\",\"description\":\"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command \\\"find | xargs grep\\\" .But to deal with this kind of situations Git provides \\\"grep\\\" command. Just as name suggests this commands searches for regex pattern\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/git-grep\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"datePublished\":\"2011-01-22T23:09:39+05:30\",\"dateModified\":\"2016-12-19T15:29:49+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Git \u2013 Grep | TO THE NEW Blog","description":"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command \"find | xargs grep\" .But to deal with this kind of situations Git provides \"grep\" command. Just as name suggests this commands searches for regex pattern","canonical_url":"https:\/\/2thenew.xyz\/blog\/git-grep\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#article","name":"Git \u2013 Grep | TO THE NEW Blog","headline":"Git &#8211; Grep","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/hitesh\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2011-01-22T23:09:39+05:30","dateModified":"2016-12-19T15:29:49+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#webpage"},"articleSection":"Technology, git, github, grep"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#listItem","name":"Git &#8211; Grep"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#listItem","position":3,"name":"Git &#8211; Grep","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/hitesh\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/hitesh\/","name":"Hitesh Bhatia","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/480688fa251da2d21002803e0b349c1fe911842715b972676a1aa3cb12808e58?s=96&d=mm&r=g","width":96,"height":96,"caption":"Hitesh Bhatia"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/git-grep\/","name":"Git \u2013 Grep | TO THE NEW Blog","description":"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command \"find | xargs grep\" .But to deal with this kind of situations Git provides \"grep\" command. Just as name suggests this commands searches for regex pattern","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/git-grep\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/hitesh\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/hitesh\/#author"},"datePublished":"2011-01-22T23:09:39+05:30","dateModified":"2016-12-19T15:29:49+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Git \u2013 Grep | TO THE NEW Blog","og:description":"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command &quot;find | xargs grep&quot; .But to deal with this kind of situations Git provides &quot;grep&quot; command. Just as name suggests this commands searches for regex pattern","og:url":"https:\/\/2thenew.xyz\/blog\/git-grep\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Git \u2013 Grep | TO THE NEW Blog","twitter:description":"Still in my early days of using Git. Recently just to make sure that I have merged two branches and have pushed changes to QA server successfully,I often used command &quot;find | xargs grep&quot; .But to deal with this kind of situations Git provides &quot;grep&quot; command. Just as name suggests this commands searches for regex pattern","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"2674","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:15:01","updated":"2024-02-29 08:49:04","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGit \u2013 Grep\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Git &#8211; Grep","link":"https:\/\/2thenew.xyz\/blog\/git-grep\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/2674","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=2674"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/2674\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=2674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=2674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=2674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}