gpt4 book ai didi

javascript - 将 git 分支列表存储在变量中

转载 作者:行者123 更新时间:2023-12-02 23:22:41 26 4
gpt4 key购买 nike

我正在尝试使用git分支将我的所有分支放入一个列表中。我当时想的是

    const branches = executecommand('git branch -l')

但我不知道正确的方法。

最佳答案

我认为 Node 核心中的 child_process 模块就是您想要的:

const cp = require('child_process')

const branches = cp.execSync('git branch -l')

https://nodejs.org/api/child_process.html

关于javascript - 将 git 分支列表存储在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56877324/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com