ruby on rails - Git/Github not letting me push to new branch -
i created new branch of rails app make changes fix front-end bugs. don't understand why, git/github isn't letting me push branch. after entering github password, hung there until cancelled it.
% git status # on branch fefixes nothing commit (working directory clean) % git push origin fefixes username 'https://github.com': {me} password 'https://{me}@github.com': ^c
what doing wrong here? it's me since github's status right now.
check remote "origin" ensure url looks correct:
git remote -v
next, try listing out contents of remote:
git ls-remote origin
if goes steps above, git connecting github hosted repository. try git push origin fefixex
again.
Comments
Post a Comment