gitメモ

tags: git

[:contents]

gitメモ

#構造 、バージョン管理の流れ

以下の3状態で管理

  • 作業ディレクトリ
  • ステージングエリア(add)
  • リポジトリ(commit)

#git config

ヘルプ git config --help

各値設定 git config --global user.name "[user_name]"
git config --global user.email "[e-mail_address]"
git config --global color.ui true

設定の確認 git config -l

#編集 、add、commit

はじめに行う git init ファイル編集 git add . (特定のファイルのみであればgit add [ファイル名]) git commit (こちらの場合は自分でvi上でコメント) または git commit -m "変更内容をコメント"

ここから先は

587字

¥ 100

この記事が気に入ったらサポートをしてみませんか?