0
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 1 year has passed since last update.

どこまで実装していたのか、分からなくなってしまった時。

Posted at

始めに

プログラマーを目指して勉強中の私は、作業を中断することが多い。今回は仕事で手一杯になってしまい(26日間勤務)しばらくポートフォリオの制作が出来なかった。(言い訳っていいわけ)
 約1ヶ月間ぶりに途中まで作成したポートフォリオを見ても、何が何だかわからない。。。gitの機能をうまく使えていないことを痛感し、今後この様な事態を防ぐために忘備録として残す。

Gitを活用できていない人

gitには作業を一時的に保存するgit commitというコマンドがある。
この時、作業内容についてメッセージを付与できるgit commit -m。この時に丁寧にメッセージを書き込めた後から見直してもわかりやすくなるのだが、、、

コミットのメッセージを閲覧する方法

git logでコミットメッセージを閲覧できる

ターミナル
git log  (コマンド入力)
      ↓                      
commit 47ba90cc909b35a65215fa161b3fe1b7d431015d (HEAD -> feature/Card_layouts)
Author: user <?????????????@gmail.com>
Date:   Wed Aug 17 23:14:39 2022 +0900

    card title修正

commit 6a2671c8cbd739ee8430d97e608291433967ac53 (origin/main, main)
Merge: cf42a6f d11bea0
Author: user <96045656+???????0@users.noreply.github.com>
Date:   Sun Aug 14 22:10:11 2022 +0900

    Merge pull request #29 from ?????????/feature/Carrierwave
    
    画像投稿機能実装

log(記録)をよく見てみる

commit IDのようなもの (一番最新の状態→ブランチ)
Author(製作者):ユーザー名<メールアドレス>
日付: コミットした時間
         メッセージ内容

commit IDのようなもの (メインブランチ)
マージ:不明
製作者:
日付:マージした時間
マージされたブランチ名
ブランチのコミットメッセージ

どうやら私は[card title修正]を作業ブランチに反映しているらしい。。

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