76. Which command will successfully populate a heroku database with the same dat
ID: 3909360 • Letter: 7
Question
76. Which command will successfully populate a heroku database with the same data specified by your local seeds.rb file? a. heroku rake db:seed b. heroku push rake db:seed c. heroku rake db:migrate d. heroku push origin master db:seed 77. Which command will successfully push a branch named "greet"? a. git push origin master b. git add greet c. git commit -m "greet" d. git push origin gree't 78. Which command places your current directory under version control with Git? a. git add b. git push origin master c. git init d. git createExplanation / Answer
76) heroku run rake db:seed
77) git push origin greet
78) git init will put the directory under version co0ntrol
Thanks, PLEASE UPVOTE if helpful