GitLab GitLab [Official] 検索 Explore | GitLab [Official] Pages Pages | GitLab [Official] GitLab Pages の作り方 | ta […]
カテゴリー:Git
git for-each-ref コマンド [Git]
git for-each-ref コマンド Git – git-for-each-ref Documentation [Official] gitのブランチリストを鮮度順に表示する – Qiita […]
Sourcetree の使い方 [Git]
Sourcetree Sourcetree – Free Git GUI for Mac and Windows [Official] ドキュメント Get started with Sourcetree | […]
パスの取り扱い [Git]
空白を含むパスを xarg コマンドに渡す git コマンドに -z オプションを指定し、xarg コマンドに -0 オプションを指定する。 $ git diff --name-only –diff-f […]
git status コマンド [Git]
git status コマンド git-status Documentation | Git [Official] パース用途で出力する スクリプトでパースする用途で出力する。 $ git status - […]
コミットメッセージを修正する [Git]
直前のコミットメッセージを修正する コマンドラインでコミットメッセージを指定して修正する $ git commit --amend -m ‘Fix commit message’ エディタを起動して修正す […]
コミットのハッシュを確認する [Git]
コミットのハッシュを確認する HEAD~2 のハッシュを確認する。 $ git --no-pager log HEAD~2 -1 --pretty=format:”%H%n” タグ v1. […]
ソースからビルドする方法 [Git]
CentOS で Git をソースからビルドする gcc 及び autoconf が入っていない場合はインストールする。 $ sudo yum install gcc gcc-c++ autoconf Git のビルドに […]
git reflog コマンド [Git]
git reflog コマンド HEAD の最新の履歴 10件を確認する。 $ git reflog -10 git-reflog | Git Documentation [Official]
git worktree コマンド [Git]
git worktree コマンド git-worktree Documentation | Git [Official] git worktrees vs “clone --referenc […]