gpt4 book ai didi

ruby-on-rails - 你如何从 nitrous.io 推送到 GIT

转载 作者:太空狗 更新时间:2023-10-29 13:05:42 26 4
gpt4 key购买 nike

我正在遵循本指南 Nitrous to Heroku Guide

它描述了 fork 一个 git repo 的过程,但我想将我的目录推送到 Git,然后推送到 Heroku。好吧,我真的很想把我的东西推到 Heroku 上。 Argghh 现在我迷路了。

因此要么直接推送到 Heroku,要么推送到 Git,然后再推送到 Heroku。

如果我遗漏了什么,欢迎提供教程链接。

提前致谢。 :)

最佳答案

您需要在同一个项目中添加两个 Remote 。

启动你的 Git 项目

$ git init

将 Github 远程添加到您的项目并推送:

$ git remote add origin https://github.com/user/repo.git
# Set a new remote

$ git remote -v
# Verify new remote
# origin https://github.com/user/repo.git (fetch)
# origin https://github.com/user/repo.git (push)

$ git add .
$ git commit -m "initial commit"
$ git push origin master

要创建一个新的 Heroku 项目并将远程推送到您的项目:

$ heroku create

$ git remote -v
# Verify new remote (you will see heroku and origin now
# heroku git@heroku.com:falling-wind-1624.git (fetch)
# heroku git@heroku.com:falling-wind-1624.git (push)
# origin https://github.com/user/repo.git (fetch)
# origin https://github.com/user/repo.git (push)

$ git push heroku master

这是一个标准策略,您每次都希望 git 添加、提交,然后推送到 origin master (Github) 和 heroku master (Heroku)。

关于ruby-on-rails - 你如何从 nitrous.io 推送到 GIT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18869828/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com