如何在git repo history中搜索带引号的字符串?

时间:2018-04-13 16:57:10

标签: regex git shell

我可以在字符串中搜索git commit history,但是如何搜索带引号的字符串?这就是我搜索字符串的方式:

cd api
rails s -p 3001 -b 0.0.0.0
cd ..

1 个答案:

答案 0 :(得分:2)

只需使用单引号:

seen_dash_flag = false
for status in stdout:
    if status.startswith("--"):
        seen_dash_flag = true
    if seen_dash_flag:             
            result = (status)
            print(result)