「Git」の版間の差分

提供: wikipokpok
移動先: 案内検索
1行目: 1行目:
 
  [[category:memo|{{PAGENAME}}]]
 
  [[category:memo|{{PAGENAME}}]]
  $ git checkout -b updating-users
+
  $ git checkout -b updating-clients
 
  $ git status
 
  $ git status
  

2021年1月13日 (水) 09:12時点における版

$ git checkout -b updating-clients
$ git status
$ git add -A
$ git commit -m "Finish user edit, update, index, and destroy actions"
$ git checkout master
$ git merge updating-clients
$ git push
$ rails test
$ git push heroku
$ heroku pg:reset DATABASE
$ heroku run rails db:migrate
$ heroku run rails db:seed
$ heroku restart