You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello everyone,
i have a little trouble when i try to push my commits.
before this problem i push my changes with out problems, but i don't know what happened.
when i try to push my changes, in the options doesn't apear the options in where branch i push my commits.when i see this y try to push by console and it works but, only in one branch, when i try to push in other branch apear de following error:
! [rejected]
master -> master (non-fast-forward)
error: failed to push some refs to 'https://bitbucket.org/cerevro/demo.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
please somebody help me
thanks a lot
Hi Daniel,
Welcome to the community!
Git works with the concept of local and remote branches. A local branch is a branch that exists in your local version of the git repository. A remote branch is one that exists on the remote location (most repositories usually have a remote called origin
). A remote equates roughly to a place where your git repository is hosted (eg. a GitHub/GitLab/BitBucket/self-hosted Git server repository instance).
Remotes are useful to share your work or collaborate on a branch.
“the tip of your current branch is behind its remote counterpart” means that there have been changes on the remote branch that you don’t have locally.
There tend to be 2 types of changes to the remote branch: someone added commits or someone modified the history of the branch.
Please check the information above and let me know if it helps.
Regards,
Carlos
Hello Carlos,
i search changes in the history and i don't need pull changes.
i search the history of the branch and i don't understand much, but i don't see nothing bad i don't know if i searched correctly
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.