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とGithubの使い方忘備録

Last updated at Posted at 2019-05-05

はじめまして。これからエンジニアを目指す者です。
完全に個人的なメモ代わりですが、GitとGitHubの使い方に関して走り書きしたいと思います。

1.初期化
git init

2.ステージングエリアへの追加
git add ファイル名

3.ローカルリポジトリにコミット
git commit -v
※-vで前回コミット時との差を確認できる

4.リモートリポジトリ(GitHub)にプッシュ
git remote add origin [GitHubのgit名]
git push -u origin master

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?