2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

git コマンド

Last updated at Posted at 2019-02-12

・最初

git
git init   //リポジトリ作成
git remote add origin https://github.com/ユーザー名/ファイル名.git
git add  [ ファイル名 ]
or
git add .   //ファイル全て
git commit -m "コメント"  //コミット (-aオプションは変更を自動検出してくれる)
git push -u origin master  //-uがあると次回から(origin master)がいらなくなる

・二回目から

git
git add [ ファイル名 ] //追加ファイル名
or
git add . //全てのファイル
git commit -a -m "任意のコメント"  //コミット (-aオプションは変更を自動検出してくれる)
git push origin master  //masterを更新

・git addの使用例

git
git add . //すべてのファイル・ディレクトリ
git add *.css //すべてのCSSファイル
git add -n //追加されるファイルを調べる
git add -u //変更されたファイルを追加する
git rm --cached //addしてしまったファイルを除外

・git commitの使用例

git
git commit -a //変更のあったファイルすべて
git commit --amend //直前のコミットを取り消す
git commit -v //変更点を表示してコミット

・コミットの取り消し

git
git reset --soft HEAD~2 // 最新のコミットから2件分をワークディレクトリの内容を保持し取り消す
git reset --hard HEAD~2 // 最新のコミットから2件分のワークディレクトリの内容とコミットを取り消す
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?