1
0

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で学習したことをつらつらとメモ!!

Gitで管理したい場所を設定するには…。

~/workspace/demo $ git init
Initialized empty Git repository in /home/ubuntu/workspace/demo/.git/

このコマンドでGitで管理する場所であるということを教えてあげる!
あとはこの場所にいろいろとファイルを追加していくことで、履歴管理をしていくよ。


Gitで管理するファイルを修正したら、Gitに修正したことを教えてあげよう!

~/workspace/demo (master) $ git add <ファイル名>

これしないと、更新したことがわからないよ。


ファイルを更新したら、どんな更新をしたかの記録をしよう!

~/workspace/demo (master) $ git commit -m "コメント"
[master (root-commit) b52e488] コメント
1 file changed, 1 insertion(+)
create mode 100644 sample.txt

※-m "コメント"を忘れると、コメント書いていないよ!と言われてviが開くよ
 コメントは忘れないようにしようね。


基本的な流れ

1.ファイルを修正
2. git add でファイルに修正があったことを教える
3. git commit -m でどんな修正があったかを記録
4. git push でリモートリポジトリにファイルをアップする


git log は今まで記録してきた commit -m のコメントが確認できる。

~/workspace/demo (master) $ git log
commit 1c8c83b2d0ec2613bb924374ebcfd28120600753
Author: nkns xxxxx@gmail.com
Date: Thu Sep 28 01:13:05 2017 +0000

簡単さ追加

commit 087c64896f3474aceb448b3791e61b116a94040e
Author: nkns xxxxx@gmail.com
Date: Thu Sep 28 01:08:02 2017 +0000

句点を追加

commit b52e488e7e5b7aa5134861e0d8d9c7c0c95a704a
Author: nkns xxxxx@gmail.com
Date: Thu Sep 28 01:05:54 2017 +0000

はじめの一歩

ファイルを消したときは?

$ git checkout <コミットID> <ファイル名>

コミットIDは、git log --oneline で確認できる。

git log --oneline
1c8c83b 簡単さ追加
087c648 句点を追加
b52e488 はじめの一歩

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?