🦍

git コマンド操作メモ

2024/04/03に公開

競合の解消

git checkout --ours {ファイル名・ディレクトリ名}
git checkout --theirs {ファイル名・ディレクトリ名}

ステージング

git add {ファイル名・ディレクトリ名}

コミット(コミットメッセージ付き)

git commit -m "[comment]"

変更を破棄

git checkout {ファイル名・ディレクトリ名}

Discussion