Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Git | git add

概要

git add

詳細

任意のファイルを追加

git add some_file.txt

任意のディレクトリを追加

git add some_directory

.gitignoreのファイルも強制的に追加する

git add -f some_file.txt

登録済みで変更されたファイルを追加する

git add -u some_file.txt

新規作成されたファイルを追加する

git add -A