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

Git 自分なり Cheat sheet V1.0.0

Posted at

Git 自分なりCheat sheet

gitの使い方

Gitをwindowsのコマンドプロンプトで操作できるようにする
https://git-scm.com/からGitをダウンロードし、インストール
※参照記事 "コマンドラインからGitを使う(for Windows)@taiponrock "
Githubの登録
Githubページよりユーザー登録
"User名"、"メールアドレス"、"パスワード"をメモ
インストール確認
Windowsのコマンドプロンプトにて`git --version`を入力
※'git version 〇.〇.〇.windows.〇'の様に表示されたらインストール完了

初期設定

ユーザー名の登録
'git config --global user.name "Githubのユーザー名"'
メールアドレスの登録
'git config --global user.email "Githubのメールアドレス"'
設定の確認
'git config -l'で設定の確認

Local Repository 作成

ディレクトリの作成
mkdir "ディレクトリー名"
※'mkdir'は"Make Directory"の略
作成したディレクトリへ移動
cd "ディレクトリー名"
※'cd'は"Change Directory"の略
ローカルリポジトリの作成
コマンドプロンプトに'git init'を入力
'init'は"Initialize"の略
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?