LoginSignup
0
0

More than 5 years have passed since last update.

git for windows リポジトリを作ってみる

Last updated at Posted at 2016-07-08

リポジトリを作ってみる

$ mkdir git-tutorial
$ cd git-tutorial/
$ git init
Initialized empty Git repository in C:/Users/username/git-tutorial/.git/

$ git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)

git init--リポジトリの初期化
 バージョン管理を始めるには初期化が必要です。
 初期すると.gitディレクトリが作成されます。

git status--リポジトリの状態確認
 On branch master:masterという名前のブランチにいます。
 nothing to commit:コミットがありません。

 

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