0
0

More than 1 year has passed since last update.

備忘録(gitクローンからプッシュまで)

Posted at

参考になる記事たち
https://qiita.com/nt-7/items/c5ea999a2638e03ee418

1.まず最初にターミナルを開いてgit add . をしよう
2.ブランチを分けよう
git checkout -b "develop"
3.変更をステージしよう
4.変更をコミットしよう
git commit -m "ほげほげ"
5.プッシュするよ
git push -u origin master

git init
→.git ファイルをディレクトリ内に作るよ。もうあるなら(クローンしたなら)いらないよ

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