50
52

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初心者に役立つ「よく使うコマンド集」

Posted at

Git歴4ヶ月の初心者です。
業務で初めてGit、GitHubに触りました。Eclipseのegitを使っていたのですが、egitのバグ(なのかな?)で開発が進まない!!ということでコマンドを使い始めました。
このページの目的は「このページ開いておけばコマンド困らない」とGit初心者が思えることです。
つまり、頻繁に使用するコマンドを集めていこうと思います。

##ブランチを作成する

git branch <新しいbranch名>

##ブランチを切り替える

git checkout <切り替えたいbranch名>

##現在のブランチの状態を確かめる(変更したファイルないかな?等)

git status

##索引に追加する

git add <ファイル名>

もしくは

git add .(ピリオド)

ですべてのファイルを索引に追加できます

##コミットする

git commit

これだとコミットメッセージがつかないです
なので

git commit -m ”コミットメッセージ”

でコミットメッセージまで決められます

##(コミットや索引に追加する前に)変更したファイルをもとに戻したい

git checkout <戻したいファイル名>

もしくは

git checkout .(ピリオド)

で変更したすべてのファイルを元に戻すことできます

##ブランチ一覧を見る

git branch

チェックアウトしているブランチには星マークがつきます

##コミットログを見る

git log -5

で、直近から5つ前までのコミットログ(ID、コミットメッセージなど)を見れます

50
52
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
50
52

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?