satomanotebook

プログラミング勉強で学んだことのアウトプットなんかだったり思ったことだったり

git hub へソースコードをアップロード

New repository を選択
Repository name を入力し Create repositoryをクリック

ターミナルでフォルダに移動

リポジトリを作成
git init

ファイルの更新を反映
git add .

現在の状態
git status

git commit -m "first commit"

git remote add origin URL(gitからコピペ)

プッシュ
git push -u origin master