人去橋間遊
水在橋底流
葉狂路中舞
雲自天上走
水在橋底流
葉狂路中舞
雲自天上走
git push interview staging
error: src refspec staging does not match
error: failed to push some refs to 'git@github.com:chienyuan/interview.git' any.
It turn out I delete local staging branch. After I add the staging branch back the problem solved. [remote "interview"]
url = git@github.com:/chienyuan/interview.git
fetch = +refs/heads/*:refs/remotes/interview/*
push = refs/heads/master:refs/heads/staging
Then I could just issue.
git push interviewLesson Learn: Understand the internal is better way for learning git.
ActionDispatch::Session::SessionRestoreError Session contains objects whose class definition isn't available.Remember to require the classes for all objects kept in the session.(Original exception: uninitialized constant ActionController::Flash::FlashHash [NameError])Just delete the browser's cookie, fixed this issue. I guess this two version have different way to handle the session or cookie. Then I google again. Got this Link , Look like someone already figure it out.