0

Git はすべてが最新であると言っていますが、ローカルで表示されるファイルには違いがあります。最近、Heroku で自分のアプリの名前を更新しましたが、リモートの git 構成を適切に更新したと思います。

プッシュを試みます:

$ git push -f staging
Everything up-to-date

git config -l:

remote.staging.url=git@heroku.com:s-si.git
remote.staging.fetch=+refs/heads/*:refs/remotes/staging/*

lsHerokuファイルの:

heroku run bash -a s-si
Running `bash` attached to terminal... up, run.2567
~ $ ls apps/
application  boston  __init__.py  __init__.pyc  main  newyork  rampup  startup_institute

ls私のローカルファイルの:

$ ls apps/
__init__.py       __init__.pyc      app_app           application       boston            newyork           payments          rampup            startup_institute
4

1 に答える 1

1

remote.staging.push dev:staging次の公式の指示に従って、コマンドラインからアプリの名前を更新した後、Heroku は私の git 構成を削除しました: https://devcenter.heroku.com/articles/renaming-apps

于 2013-04-20T22:27:57.947 に答える