When I try the command $ git push origin I get the message "Everything up-to-date" but when I check my repository in Bitbucket I see the new verion of the code is not uploaded and there are no cahnges.
Please help me out. I am new to this.
Have you committed your changes before pushing?
Yes I used the below commands:
Do git add first and then commit.
Thanks Jobin. I got your point and it worked to some extent. However, on doing the commit I recevied the following messages and it is still not getting pushed to the repository.
gunjan@Niyamgiri:~/tribalrights$ git push origin masterTo ssh://git@bitbucket.org/niyamgiri/tribalrights.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'ssh://git@bitbucket.org/niyamgiri/tribalrights.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
---I also tried the below command --
gunjan@Niyamgiri:~/tribalrights$ git push -u origin --allTo ssh://git@bitbucket.org/niyamgiri/tribalrights.git
Bitbucket is getting uglier everyday. The most lethal combination is Spring STS and Bitbucket.
Bitbucket will fail you whenever you need it the most without any good reason.
It getting sluggish like Microsoft Windows Everyday.
<p>bitbucket is not good anymore</p>
i face a lot of problems in bitbucket. fuck
git commit -m "initial commit" git push origin master
For some reason when I did this it worked...
I solved problem with command:
git pull --allow-unrelated-histories
Make sure that you add files
git status
git add .
git commit
git push
I had the same problem I solve it by this way. Hope it will work
Thank you, I had this error
! [rejected] master -> master (fetch first)error: failed to push some refs to 'https://owaisullhaq@bitbucket.org/owaisullhaq/bank.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.
and it solved by this command. And write "git push -u origin master" after this command worked.
You're welcome, I find somewhere else, but not found right solution. So I posted here for all you guy need it.
git push origin master --force
I had the same problem .Hope it will work .
git pull --rebase origin master
git push -u origin master
Try this..It will work. Worked for me:)
Wow, thanks a lot !!
Guy's if you are facing same issue push forcefully git push origin master --force
You saved my day. I don't know what exactly the problem is either with bitbucket or android studio? I have been working hard to resolve this issue but finally your git command helped me.
I am facing this problem and i am traying to solve by avobe comment..but i can't solve this then i wrote "git push --all" and i got it🥰🥰.if you face same problem .i suggest to you ..try this ..In Sha Allah you will get it..
What worked for me:
- Open the repository on bitbucket
- Go to "Repository settings"
- In "Repository details" > "Large File Storage (LFS)" tick "Allow LFS"
- Than I was able to push w/o the error saying "failed to push some refs"
It looks like you're new here. Sign in or register to get started.