LoginSignup
0
0

More than 3 years have passed since last update.

Railsアプリ:Gitコマンド備忘録

Posted at

初期コマンド

git init
git remote add origin 「URL」
git push -u origin master

ブランチ作成

git checkout -b ○

ブランチ完了

git add -A
git commit -m "Finish ○"
git checkout master
git merge ○
git push

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