0
現在チェックアウトされているブランチを知る必要があります。nodegitで現在のブランチ名を取得するには?
私が見る解決策の1つは、ブランチを列挙し、どれが現在の「HEAD」であるかをチェックすることです。別の方法がありますか?
現在チェックアウトされているブランチを知る必要があります。nodegitで現在のブランチ名を取得するには?
私が見る解決策の1つは、ブランチを列挙し、どれが現在の「HEAD」であるかをチェックすることです。別の方法がありますか?
使用このコード:
import * as Git from 'nodegit';
let repo: Git.Repository = await Git.Repository.open("path to the repo");
let currentBranch: Git.Reference = await repo.getCurrentBranch();
let currentBranchName: string = currentBranch.shorthand();