エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
misc/git/pre-commit - The Go Programming Language
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
misc/git/pre-commit - The Go Programming Language
package main import "fmt" func main() { fmt.Println("Hello, 世界") } 1 #!/bin/sh 2 # Copyright 20... package main import "fmt" func main() { fmt.Println("Hello, 世界") } 1 #!/bin/sh 2 # Copyright 2012 The Go Authors. All rights reserved. 3 # Use of this source code is governed by a BSD-style 4 # license that can be found in the LICENSE file. 5 6 # git gofmt pre-commit hook 7 # 8 # To use, store as .git/hooks/pre-commit inside your repository and make sure 9 # it has execute permissions. 10 # 11 # T