LoginSignup
0
1

More than 5 years have passed since last update.

git

Last updated at Posted at 2016-08-22

下記の手順でgithubにコードををアップする(上から順に行う)

git init

対象ファイルの階層でgit initを行う。Gitを使えるように変換する。

git add ファイル・ディレクトリ名

ファイルをローカルに保存する準備

git commit -m コメント

ローカルにコミットする。

git status

上手く、ローカルに登録されているか確認。

git remote add origin URL名

githubの保存する場所を指定してあげる

git push origin master

ここでgithubの「code」に入る

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