7
7

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の使い方-既存フォルダをgit管理下に置きpushする-備忘録

Posted at

プログラミング初心者の備忘録

#既存フォルダをgit管理下に置く方法
1.既存のフォルダの場所を指定する。

$cd /c/Users/...

2.git管理する。

$git init

3.リモートリポジトリの設定
※GitHubでリポジトリを作成しておく必要あり。
git管理したフォルダにリモートリポジトリを設定する。

$git remote add origin https://github.com/ユーザー名/リポジトリ名/git

4.gitにファイルを追加
フォルダ内のファイルを「git add」でgit管理する。

$git add ファイル名
$git commit -m "コメント"

5.リモートリポジトリにプッシュする
「git push」でリモートリポジトリにプッシュする。

$git push origin master

以上

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?