This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git diff --staged | cody chat --stdin -m "suggest commit message for this git staged changes in Korean, like this format example \"feat(scope): commit message\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.clear(); | |
// --- utils | |
const $ = (selector) => document.querySelector(selector); | |
const $$ = (selector) => document.querySelectorAll(selector); | |
// --- elements | |
const $issueTable = $('table[aria-label="Issues"]'); | |
const $issueTableBody = $issueTable.querySelector("tbody"); |
OlderNewer