LoginSignup
2
2

More than 1 year has passed since last update.

Gitの初期設定

Posted at

バージョン管理システム「Git」

Gitは、プログラム開発の作業履歴を記録するツール

gitのインストール確認

git --version

結果、 git version 2.5.●などのバージョン情報が出ればインストール済み

ユーザー登録

git config --global user.name "YOUR_NAME"
git config --global user.email "YOUR_EMAIL_ADDERESS@gmail.com"
ユーザー登録情報の確認
git config --list

#user.name=YOUR_NAME
#user.email=YOUR_EMAIL_ADDERESS@gmail.com

リポジトリを作る

mkdir myfirstwork
cd myfirstwork
git init
 #Initialized empty Git repository in /home/ubuntu/myfirstwork/.git/

スクリーンショット 2021-09-06 22.39.25.png

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