Git

Git の stash コマンドについてメモ

Git

作業ツリーの内容を一時的に保存することができる git stash コマンドについての備忘録。 git stash 環境 git version 2.37.3 使い方 作業ツリーの状況。 $ git status On branch test1 Changes not staged for commit: (use "git add <file>..." to update what w</file>…

きれいな Git コミットログをつくる

Git

下記の Qiita 投稿内容を試した時の作業ログです。 綺麗なコミットログを作りたいときのgitテクニック 環境 Ubuntu 20.04.4 LTS git version 2.37.3 コードの更新内容 更新前 ./main.go package main import ( "fmt" ) func main() { fmt.Println(double(2))…