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 3 years have passed since last update.

git : vscodeで扱うgitのあれこれ(個人メモ)

Last updated at Posted at 2020-10-28

初書:2020/10/28
PC:macOS 10.15.7
git version 2.28.0

前書き

個人的メモなので、さほど解説とかはないかも

前提

gitの理解

拡張機能

・GitLens
・Git Graph

バージョン確認

ターミナルにて

% git --version

gitの開始

ターミナルにて

% git init

名前とメールアドレスの設定

ターミナルにて / git initの後

% git config --local user.name xxx
% git config --local user.email xxx@example.com

xxxxxx@example.comは任意に変更
なお、グローバルで変更する場合は、--local--global

終わりに

git自体実はあんまり理解していないので、随時追加していく…かも

参考サイト

君には1時間でGitについて知ってもらう(with VSCode) - Qiita
Gitのコミットメッセージの書き方 - Qiita

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?