Tagged Questions
0
votes
0answers
13 views
Could not read from remote repository when pushing to Heroku (Rails Tutorial 5)
I pushed my chapter 5 version of Sample_App to git, and then when I 'git push heroku' I get:
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To ...
0
votes
2answers
31 views
Restart rails server on git commit
I'm setting up a shared development server for a Ruby on Rails project.
Is there a good way to set it up to restart, or reload the code every time someone pushes a commit to the master branch (for ...
0
votes
1answer
36 views
Existing Heroku app and Github
I have an existing Rails app at heroku. I have a github account.
I'd like to use the Github Mac app to view/commit changes and push back up to Heroku. Can this be done? Or can the Github Mac ...
1
vote
2answers
42 views
Can't push on heroku
I’ve just cloned one of my repositories on github, I've made some changes and I would like to send it on the heroku application. But when I try to run git push heroku master, I get :
fatal: 'heroku' ...
0
votes
2answers
39 views
Why is git showing these files as removed and added vs. moved?
So I need to upgrade an rails 2.3.14 app to rails 3. We use git, so decided to create another branch 'rails3' (git checkout -b rails3). The easiest solution I found to the problem of the upgrade was ...
0
votes
2answers
48 views
Building site on Heroku
I'm beginner on rails, heroku and git, but I've done all installation stuffs.
I created two projects on heroku.com, but I don't know how to change them from my PC (the way I looked from help doesn't ...
0
votes
1answer
38 views
Cannot push to github, ssh: Could not resolve hostname
I can't get pass this, have remade the repository multiple times, made ssh keys over
--------------
demo_app <username>$ git remote add origin git@github.com:<username>/demo_app.git
...
0
votes
1answer
36 views
Capistrano rollback - what happens to GIT?
I have a Rails app that is using GIT, Github, and Capistrano.
I have GIT repositories on my local iMac, Github and the production server.
My normal process is:
I run (1) $ git push (to push the ...
0
votes
2answers
28 views
Pages stored in MongoDB, accessible by mongo shell, but not tracked by git, and not visible when pushing to GitHub
As the title says (and as it may be visible that I am still a beginner). In my rails app, I have implemented an MVC for support pages to my app.
I wanted to show the pages that I created to my ...
0
votes
1answer
21 views
Manage Rails model classes across repositories
My project has the following setup. I have two repositories (seprate projects):
one that generates my model classes (Ruby)
one that works with my model classes (Rails)
The first one writes the ...
0
votes
2answers
38 views
github init error
I'm taking the ruby.railstutorial.org class (chapter 3) and I'm required to make a new github account. So I start up as normal.
$ git init
$ git commit -m "first commit"
$ git remote add origin ...
0
votes
0answers
50 views
Rails twitter bootstrap git
I'm using the gem twitter-bootstrap-rails. It's correctly working on my post but after cloning and pull via git it's not effective at all on my collaborator's post.
How can I make it work? We have ...
2
votes
4answers
166 views
Gitlab PUSH syntax error, unexpected ':', expecting $end
I've installed Gitlab 5, all ran smoothly until I attempted to make a test PUSH. The error is:
remote: /usr/local/rvm/gems/ruby-2.0.0-p0/gems/bundler-1.3.5/lib/bundler/dsl.rb:33:in `eval_gemfile': ...
0
votes
0answers
20 views
Gem or Rake task, etc. to get a high level overview of existing Rails project in Git?
I'm diving into a large existing Ruby on Rails 3.2 project using Git for version control and am looking to get a quick overview of the project, especially what sections of the code are being most ...
2
votes
2answers
113 views
Amazon EC2 + Capistrano + Git: Permission denied (publickey)
When I deploy a Rails app to Amazon EC2 server with using Capistrano, I get
** [IP.compute-1.amazonaws.com :: out] Permission denied (publickey).
** [IP.compute-1.amazonaws.com :: out] fatal: The ...
-4
votes
0answers
46 views
Please help Solve this error i am new on heroku [closed]
$ git push heroku master
! Your key with fingerprint 24:36:89:3d:36:fe:29:a8:2d:3e:da:09:a5:53:a6:b2 is
not authorized to access herapp.
fatal: Could not read from remote repository.
Please make ...
1
vote
3answers
60 views
Git More than one value for the key user.name/email
Problem 1.
when I run the command
$ git config --global user.name
# or
$ git config --global user.email
I get the following error message:
error: More than one value for the key user.name/email
...
1
vote
2answers
51 views
Accidentally created a git submodule
So I was developing a API Client gem, which was working great, had it's own github repository and my team lead decided that he wanted me to move this client api into the api repository itself. So I ...
2
votes
2answers
32 views
Using Rails + Capistrano with Github and multiple branches
In my Rails app, I'm using Git, GitHub, and Capistrano. We have 2 servers (staging and production).
Up to now, I would make code changes on my local machine and push them to GitHub, then during ...
1
vote
1answer
46 views
Heroku push to production
I set up my staging and production environments on heroku, and pushed to both and it worked fine. I came back a day later and was able to push to staging but got the following message about git push ...
1
vote
1answer
34 views
Cleaning Git Repository: Rails Project, added Gems to Repo by mistake
I was trying to solve an issue with some gem conflicts, and I added all of my gems to vendor/cache, I have since removed them, but now I have a 40M pack file where it used to be less than 1M.
I have ...
3
votes
1answer
66 views
Managing configuration files across multiple servers
Running a Rails application on multiple servers (~20), I want to able to manage the configurartion files (mainly *.yml, but also SSL pem/certs files and other text based) from a single location such ...
3
votes
3answers
45 views
Avoiding to hardcode server configuration
I'm working on a Rails application, and I'm about to open-source it.
I'm deploying it to a VPS server, configured with nginx and unicorn, following this RailsCast.
In order to get Capistrano, Nginx ...
0
votes
2answers
44 views
Rails keeping git versions correctly
I hope this is an ok question for StackOverflow. If it isn't, let me know. Thanks!!
I have my first Rails app about to go production. I'm using GIT and Github for version control. And I'm using CAP ...
1
vote
0answers
75 views
git push heroku master fails even if everything seems to be fine
This is the console, everything seems to work fine until the launching module of git push
What's the problem?
# Rails Environment Configuration.
---
git:
user.name: ...
0
votes
1answer
38 views
Deploying Github Repo to Heroku without downloading git
Is there a way to deploy a GitHub repository to Heroku without using git? I tried the link at https://github.com/ddollar/heroku-push but it's not seeming to work, can anyone help with this issue? And ...
1
vote
2answers
97 views
Heroku, hoe gem is not in gemlist, gemfile, gemfile.lock. Why is it trying to install it anyways?
I'm trying to push to Heroku and it insists on trying to install a gem I do not have anywhere in my app. I've have the latest changes committed to my git repo. The gem is hoe. I've tried the version ...
1
vote
1answer
51 views
Restore Gemfile.lock from gitignore
In my Rails App, Gemfile.lock is ignored from the tracking through the .gitignore
But I want the file to be committed and tracked.
How do I do that?
-2
votes
2answers
57 views
bundle remote error: Repository not found
I want deploy the sample project of rails3 in action.When i run 'bundle install',it tells me that remote error: Repository not found.I am new to git,github and rails3.but i have alreay created a ...
1
vote
3answers
44 views
What is the best way to resolve Rails orphaned migrations?
I have been switching between branches in a project and each of them have different migrations... This is the scenario:
$ rake db:migrate:status
Status Migration ID Migration Name
...
3
votes
1answer
57 views
Ruby on Rails deleted migrations still running on Heroku
So at one point in the development process I added a migration to add a column to my users table. This column added a "dollars" attribute. After that I decided to remove the "dollars" attribute by ...
0
votes
1answer
21 views
Unable to Read SHA1 File while Deploying
When attempting to deploy via Capistrano I am getting the following errors. This is happened on a repo that I've been working on for more than a year and everything has been going smooth during the ...
0
votes
2answers
50 views
how to fix my git push error? did I screw it up?
Up to this point, I had very few problems deploying my app.
However, after a deployment tonight, I got an unfixable app error. So I did a rollback from v7 back to v4 from a week ago. The app worked ...
0
votes
2answers
21 views
rolling back a deployment on heroku then uploading another version without roll forward?
I rolled back my app on heroku from v7 to v4 (for example) which is a previous version from a week ago. Since v7 introduced some errors, I want to upload a completely new version. I tried to deploy ...
-1
votes
2answers
125 views
Shell access is disabled with bitbucket from remote server
I have added my cat ~/.ssh/id_rsa.pub from my remote server to bitbucket ssh keys.
However when I try connect from my remote server with bitbucket I get:
PTY allocation request failed on channel 0
...
0
votes
1answer
56 views
Git reset and delete branch not reverting back properly
I created a new branch called user-microposts. I proceeded to mess something up on creating a model. I tried going back to the last commit using:
git reset --hard ...
0
votes
2answers
36 views
correct way of handling rvm, bundle, git, and branches
So I am working on a RoR project.
I needed to fork the repo and am working on fixing issues on my own fork, issuing pull requests for the non-trivial changes. The main repo owner requests to create ...
0
votes
0answers
56 views
heroku deployment problems, returns :fatal: No path specified
I'm a windows user who has been learning the Ruby on Rails tutorial by Michael Hartl (http://ruby.railstutorial.org/chapters/ruby-on-rails-tutorial) and I have been following everything perfectly ...
1
vote
2answers
37 views
Why would a branch created off of another branch be different than the parent branch?
So I have a branch develop, and I created a new branch off of it git checkout -b syntax_highlight.
The issue is, when I go to my new branch, my Gemfile is different in the new branch than the parent ...
1
vote
1answer
38 views
Capistrano bringing deleted git files to release
I am deploying with Capistrano and using git as my version control.
When I do cap deploy:update , it is bringing deleted files that are no longer in master to the /release/bla folder.
I do not wish ...
0
votes
1answer
27 views
Syncing db-data between developers in Rails
We're two developers utilizing Git in development of a Rails app.
How do we share stored data in the development-database between eachother?
In development we're using SQLite3 and in production ...
3
votes
4answers
59 views
I need to apply a hotfix to production but I didn't create a branch, what can I do?
I started working on a bunch of new features in the code without branching.
Those new features are not ready to deploy. However, an urgent request has come in to fix a different issue.
I'd like to ...
1
vote
1answer
85 views
git push heroku hangs
Disclaimer: I am a noob.
I am learning ruby using the http://ruby.railstutorial.org/ and until two days ago everything worked fine.
I am not sure exactly what went wrong but i am not able to push ...
0
votes
1answer
83 views
How do you completely uninstall git and Railsinstaller on Windows 7 for fresh re-install
(Windows 7 64-bit) I had previously installed the Railsinstaller and did not follow through on using it. I uninstalled it using Revo Uninstaller, but now I'd like to reinstall it. After running the ...
0
votes
0answers
82 views
Heroku Page not Found Error after Deploy
EDIT -- Just cleared the cache an everything worked out fine again. Thanks for those who stopped by to read :)
So I launched a site last night in heroku and when I deployed a new commit I got some ...
0
votes
3answers
81 views
Git: how to begin a repo to work with it on a remote server via ssh
I was using git on Heroku, and everything was going very good. Now I am trying to use git on a VPS server, but I can't make it work.
I am doing it on terminal over ssh. It's a rails app. When I ...
0
votes
0answers
176 views
Why will Heroku git push to my staging app but no longer to my production app
Until recently I've had no problems with git pushes to my staging app and to my production app on Heroku.
Recently I let my staging app get a few commits ahead of my production app while I fiddled ...
1
vote
2answers
58 views
How do I work on my Rails app in development mode, but push it in production mode?
Simple question, I do all my work on my local at home computer and then I git push to my repo on github, and then on my Ubuntu Server I do a git pull to get the content, but this causes ...
0
votes
1answer
38 views
Switching Between Heroku's Remote Repos
I'm facing a curious problem.
I'm running a Linux box, with two Desktops. Here's my environment:
Desktop 1: Running a pet project
Terminal 1
Heroku Login: my personal e-mail
Heroku App 1
Desktop ...
1
vote
1answer
38 views
Push to heroku from another local branch
I have 2 branches: development, some_other_name. I've pushed some_other_name branch which is sub branch of development to heroku, i tested my code and then switched to development, did some code ...






