Advertisement
NoderCoder

Untitled

Mar 11th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.20 KB | None | 0 0
  1. mantra@manns-laptop:~/odin_on_rails$ cd my_first_rails_app/
  2. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git status
  3. On branch master
  4. Your branch is up to date with 'origin/master'.
  5.  
  6. Changes not staged for commit:
  7.   (use "git add <file>..." to update what will be committed)
  8.   (use "git checkout -- <file>..." to discard changes in working directory)
  9.  
  10.     modified:   config/routes.rb
  11.  
  12. no changes added to commit (use "git add" and/or "git commit -a")
  13. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git add .
  14. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git status
  15. On branch master
  16. Your branch is up to date with 'origin/master'.
  17.  
  18. Changes to be committed:
  19.   (use "git reset HEAD <file>..." to unstage)
  20.  
  21.     modified:   config/routes.rb
  22.  
  23. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git commit -m
  24. error: switch `m' requires a value
  25. usage: git commit [<options>] [--] <pathspec>...
  26.  
  27.    -q, --quiet           suppress summary after successful commit
  28.    -v, --verbose         show diff in commit message template
  29.  
  30. Commit message options
  31.    -F, --file <file>     read message from file
  32.    --author <author>     override author for commit
  33.    --date <date>         override date for commit
  34.    -m, --message <message>
  35.                          commit message
  36.    -c, --reedit-message <commit>
  37.                          reuse and edit message from specified commit
  38.    -C, --reuse-message <commit>
  39.                          reuse message from specified commit
  40.    --fixup <commit>      use autosquash formatted message to fixup specified commit
  41.    --squash <commit>     use autosquash formatted message to squash specified commit
  42.    --reset-author        the commit is authored by me now (used with -C/-c/--amend)
  43.    -s, --signoff         add Signed-off-by:
  44.    -t, --template <file>
  45.                          use specified template file
  46.    -e, --edit            force edit of commit
  47.    --cleanup <default>   how to strip spaces and #comments from message
  48.    --status              include status in commit message template
  49.    -S, --gpg-sign[=<key-id>]
  50.                          GPG sign commit
  51.  
  52. Commit contents options
  53.    -a, --all             commit all changed files
  54.    -i, --include         add specified files to index for commit
  55.    --interactive         interactively add files
  56.    -p, --patch           interactively add changes
  57.    -o, --only            commit only specified files
  58.    -n, --no-verify       bypass pre-commit and commit-msg hooks
  59.    --dry-run             show what would be committed
  60.    --short               show status concisely
  61.    --branch              show branch information
  62.    --ahead-behind        compute full ahead/behind values
  63.    --porcelain           machine-readable output
  64.    --long                show status in long format (default)
  65.    -z, --null            terminate entries with NUL
  66.    --amend               amend previous commit
  67.    --no-post-rewrite     bypass post-rewrite hook
  68.    -u, --untracked-files[=<mode>]
  69.                          show untracked files, optional modes: all, normal, no. (Default: all)
  70.  
  71. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git commit -m "Reedited due to error"
  72. [master 316fa34] Reedited due to error
  73. 1 file changed, 1 insertion(+), 1 deletion(-)
  74. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git push origin master
  75. Warning: Permanently added the RSA host key for IP address '192.30.253.113' to the list of known hosts.
  76. Counting objects: 4, done.
  77. Delta compression using up to 8 threads.
  78. Compressing objects: 100% (4/4), done.
  79. Writing objects: 100% (4/4), 405 bytes | 405.00 KiB/s, done.
  80. Total 4 (delta 2), reused 0 (delta 0)
  81. remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
  82. To github.com:NoderCoder/my_first_rails_app.git
  83.   86051fc..316fa34  master -> master
  84. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ git push heroku master
  85. Counting objects: 4, done.
  86. Delta compression using up to 8 threads.
  87. Compressing objects: 100% (4/4), done.
  88. Writing objects: 100% (4/4), 405 bytes | 405.00 KiB/s, done.
  89. Total 4 (delta 2), reused 0 (delta 0)
  90. remote: Compressing source files... done.
  91. remote: Building source:
  92. remote:
  93. remote: -----> Ruby app detected
  94. remote: -----> Installing bundler 1.17.3
  95. remote: -----> Removing BUNDLED WITH version in the Gemfile.lock
  96. remote: -----> Compiling Ruby/Rails
  97. remote: -----> Using Ruby version: ruby-2.6.5
  98. remote: -----> Installing dependencies using bundler 1.17.3
  99. remote:        Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
  100. remote:        The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
  101. remote:        Using rake 13.0.1
  102. remote:        Using concurrent-ruby 1.1.6
  103. remote:        Using i18n 1.8.2
  104. remote:        Using minitest 5.14.0
  105. remote:        Using thread_safe 0.3.6
  106. remote:        Using tzinfo 1.2.6
  107. remote:        Using activesupport 5.2.4.1
  108. remote:        Using builder 3.2.4
  109. remote:        Using erubi 1.9.0
  110. remote:        Using mini_portile2 2.4.0
  111. remote:        Using nokogiri 1.10.9
  112. remote:        Using rails-dom-testing 2.0.3
  113. remote:        Using crass 1.0.6
  114. remote:        Using loofah 2.4.0
  115. remote:        Using rails-html-sanitizer 1.3.0
  116. remote:        Using actionview 5.2.4.1
  117. remote:        Using rack 2.2.2
  118. remote:        Using rack-test 1.1.0
  119. remote:        Using actionpack 5.2.4.1
  120. remote:        Using nio4r 2.5.2
  121. remote:        Using websocket-extensions 0.1.4
  122. remote:        Using websocket-driver 0.7.1
  123. remote:        Using actioncable 5.2.4.1
  124. remote:        Using globalid 0.4.2
  125. remote:        Using activejob 5.2.4.1
  126. remote:        Using mini_mime 1.0.2
  127. remote:        Using mail 2.7.1
  128. remote:        Using actionmailer 5.2.4.1
  129. remote:        Using activemodel 5.2.4.1
  130. remote:        Using arel 9.0.0
  131. remote:        Using activerecord 5.2.4.1
  132. remote:        Using mimemagic 0.3.4
  133. remote:        Using marcel 0.3.3
  134. remote:        Using activestorage 5.2.4.1
  135. remote:        Using msgpack 1.3.3
  136. remote:        Using bootsnap 1.4.6
  137. remote:        Using bundler 1.17.3
  138. remote:        Using coffee-script-source 1.12.2
  139. remote:        Using execjs 2.7.0
  140. remote:        Using coffee-script 2.4.1
  141. remote:        Using method_source 0.9.2
  142. remote:        Using thor 1.0.1
  143. remote:        Using railties 5.2.4.1
  144. remote:        Using coffee-rails 4.2.2
  145. remote:        Using ffi 1.12.2
  146. remote:        Using jbuilder 2.10.0
  147. remote:        Using pg 1.2.2
  148. remote:        Using puma 3.12.4
  149. remote:        Using sprockets 3.7.2
  150. remote:        Using sprockets-rails 3.2.1
  151. remote:        Using rails 5.2.4.1
  152. remote:        Using rb-fsevent 0.10.3
  153. remote:        Using rb-inotify 0.10.1
  154. remote:        Using sass-listen 4.0.0
  155. remote:        Using sass 3.7.4
  156. remote:        Using tilt 2.0.10
  157. remote:        Using sass-rails 5.1.0
  158. remote:        Using turbolinks-source 5.2.0
  159. remote:        Using turbolinks 5.2.1
  160. remote:        Using uglifier 4.2.0
  161. remote:        Bundle complete! 19 Gemfile dependencies, 60 gems now installed.
  162. remote:        Gems in the groups development and test were not installed.
  163. remote:        Bundled gems are installed into `./vendor/bundle`
  164. remote:        Bundle completed (0.44s)
  165. remote:        Cleaning up the bundler cache.
  166. remote:        The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
  167. remote: -----> Installing node-v10.15.3-linux-x64
  168. remote: -----> Detecting rake tasks
  169. remote: -----> Preparing app for Rails asset pipeline
  170. remote:        Running: rake assets:precompile
  171. remote:        Yarn executable was not detected in the system.
  172. remote:        Download Yarn at https://yarnpkg.com/en/docs/install
  173. remote:        Asset precompilation completed (1.38s)
  174. remote:        Cleaning assets
  175. remote:        Running: rake assets:clean
  176. remote: -----> Detecting rails configuration
  177. remote:
  178. remote: ###### WARNING:
  179. remote:
  180. remote:        You set your `config.active_storage.service` to :local in production.
  181. remote:        If you are uploading files to this app, they will not persist after the app
  182. remote:        is restarted, on one-off dynos, or if the app has multiple dynos.
  183. remote:        Heroku applications have an ephemeral file system. To
  184. remote:        persist uploaded files, please use a service such as S3 and update your Rails
  185. remote:        configuration.
  186. remote:        
  187. remote:        For more information can be found in this article:
  188. remote:          https://devcenter.heroku.com/articles/active-storage-on-heroku
  189. remote:        
  190. remote:
  191. remote:
  192. remote: ###### WARNING:
  193. remote:
  194. remote:        We detected that some binary dependencies required to
  195. remote:        use all the preview features of Active Storage are not
  196. remote:        present on this system.
  197. remote:        
  198. remote:        For more information please see:
  199. remote:          https://devcenter.heroku.com/articles/active-storage-on-heroku
  200. remote:        
  201. remote:
  202. remote:
  203. remote: ###### WARNING:
  204. remote:
  205. remote:        No Procfile detected, using the default web server.
  206. remote:        We recommend explicitly declaring how to boot your server process via a Procfile.
  207. remote:        https://devcenter.heroku.com/articles/ruby-default-web-server
  208. remote:
  209. remote:
  210. remote:
  211. remote: -----> Discovering process types
  212. remote:        Procfile declares types     -> (none)
  213. remote:        Default types for buildpack -> console, rake, web
  214. remote:
  215. remote: -----> Compressing...
  216. remote:        Done: 43M
  217. remote: -----> Launching...
  218. remote:        Released v7
  219. remote:        https://radiant-meadow-79425.herokuapp.com/ deployed to Heroku
  220. remote:
  221. remote: Verifying deploy... done.
  222. To https://git.heroku.com/radiant-meadow-79425.git
  223.   86051fc..316fa34  master -> master
  224. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ heroku run rails db:migrate
  225. Running rails db:migrate on ⬢ radiant-meadow-79425... up, run.4263 (Free)
  226. D, [2020-03-12T00:02:35.224256 #4] DEBUG -- :    (1.1ms)  SELECT pg_try_advisory_lock(4610768395435112925)
  227. D, [2020-03-12T00:02:35.270628 #4] DEBUG -- :    (8.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
  228. D, [2020-03-12T00:02:35.283097 #4] DEBUG -- :   ActiveRecord::InternalMetadata Load (4.0ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
  229. D, [2020-03-12T00:02:35.291300 #4] DEBUG -- :    (1.0ms)  BEGIN
  230. D, [2020-03-12T00:02:35.293110 #4] DEBUG -- :    (1.0ms)  COMMIT
  231. D, [2020-03-12T00:02:35.294369 #4] DEBUG -- :    (1.1ms)  SELECT pg_advisory_unlock(4610768395435112925)
  232. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$ heroku open
  233. mantra@manns-laptop:~/odin_on_rails/my_first_rails_app$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement