This file contains hidden or 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
| #!/usr/bin/env bash | |
| # git-br-name — 現在の差分からブランチ名を予測する | |
| # | |
| # Usage: | |
| # git br-name 予測した名前で git checkout -b する(デフォルト) | |
| # git br-name -n 名前を出力するだけ、checkout はしない(dry-run) | |
| # git br-name -h ヘルプ | |
| # | |
| # 仕組み: | |
| # ANTHROPIC_API_KEY があれば curl で API を直叩き(高速、~1-2秒)。 |
This file contains hidden or 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
| # Font | |
| font-family = HackGen35 Console | |
| font-size = 14 | |
| adjust-cell-width = -1 | |
| # Theme | |
| theme = Catppuccin Mocha | |
| # Appearance | |
| background-opacity = 0.92 |
This file contains hidden or 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
| format: | |
| subject: '### %{subject}' | |
| # line: '* %{url} by @%{user} %{status}' | |
| line: '* [%{title}](%{url})' | |
| dictionary: | |
| status: | |
| merged: '_merged!_' | |
| closed: '_closed!_' |
This file contains hidden or 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
| module.exports = function(grunt) { | |
| // All configuration goes here | |
| grunt.initConfig({ | |
| jekyll: { | |
| build : { | |
| dest: '_site' | |
| } | |
| }, |