LoginSignup
1
1

More than 3 years have passed since last update.

新しくgitを設定するときのやつ

Last updated at Posted at 2020-05-21

完全に自分用です

自分のアカウントにリポジトリを作成

ここで設定するのはリポジトリ名くらいでとりあえず良い
https://github.com/...のアドレスを次で使うので念頭に

cdへ

cd awesomeapp

次にgit初期化

git init

これでいける

git add .
git commit -m "なんちゃら"
git remote add origin https://github.com/...
git push master origin

二回目からは

git status
git add .
git commit -m "なんちゃら"
git push origin master

でいける

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