第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

從 Go 'exec()' 調(diào)用 `git shortlog` 有什么問題?

從 Go 'exec()' 調(diào)用 `git shortlog` 有什么問題?

Go
POPMUISE 2023-03-21 17:12:34
我試圖git shortlog從 Go 中調(diào)用以獲取輸出,但我遇到了麻煩。這是我如何使用以下方法執(zhí)行此操作的工作示例git log:package mainimport (    "fmt"    "os"    "os/exec")func main() {    runBasicExample()}func runBasicExample() {    cmdOut, err := exec.Command("git", "log").Output()    if err != nil {        fmt.Fprintln(os.Stderr, "There was an error running the git command: ", err)        os.Exit(1)    }    output := string(cmdOut)    fmt.Printf("Output: \n%s\n", output)}這給出了預(yù)期的輸出:$>  go run show-commits.go Output: commit 4abb96396c69fa4e604c9739abe338e03705f9d4Author: TheAndruuDate:   Tue Aug 21 21:55:07 2018 -0400    Updating readme但我真的很想用git shortlog.出于某種原因......我無法讓它與 shortlog 一起工作。又是這個(gè)程序,唯一的變化是 git 命令行:package mainimport (    "fmt"    "os"    "os/exec")func main() {    runBasicExample()}func runBasicExample() {    cmdOut, err := exec.Command("git", "shortlog").Output()    if err != nil {        fmt.Fprintln(os.Stderr, "There was an error running the git command: ", err)        os.Exit(1)    }    output := string(cmdOut)    fmt.Printf("Output: \n%s\n", output)}輸出為空:$>  go run show-commits.go Output: 我可以git shortlog直接從命令行運(yùn)行,它似乎工作正常。檢查文檔后,我相信“shortlog”命令是 git 本身的一部分。任何人都可以幫助指出我可以做些什么不同嗎?
查看完整描述

1 回答

?
www說

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊

事實(shí)證明,我能夠通過重新閱讀git 文檔找到答案

答案是在這一行:

如果沒有在命令行上傳遞任何修訂,并且標(biāo)準(zhǔn)輸入不是終端或沒有當(dāng)前分支,則 git shortlog 將輸出從標(biāo)準(zhǔn)輸入讀取的日志摘要,而不引用當(dāng)前存儲(chǔ)庫。

盡管我可以git shortlog從終端運(yùn)行并看到預(yù)期的輸出,但在通過exec()命令運(yùn)行時(shí),我需要指定分支。

所以在上面的示例中,我將“master”添加到命令參數(shù)中,如下所示:

cmdOut, err := exec.Command("git", "shortlog", "master").Output()

一切都按預(yù)期進(jìn)行。


查看完整回答
反對(duì) 回復(fù) 2023-03-21
  • 1 回答
  • 0 關(guān)注
  • 113 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)