मैं git
अभी तक काफी नया हूं, वर्तमान में इसका उपयोग टीम के माहौल में हमारे कोड को प्रबंधित करने के लिए कर रहा हूं । मेरे पास कुछ रिबासिंग मुद्दे थे और मैंने उनका उपयोग करके तय किया
git checkout --ours filename.txt
git add filename.txt
git rebase --continue
अब मैं अपने बदलावों को आगे बढ़ाना चाहता हूं, और इसलिए निम्न कमांड चलाना चाहता हूं
$ git push origin feature/my_feature_branch
मुझे निम्नलिखित त्रुटि देता है:
To ssh://git@coderepo.com:7999/repo/myproject.git
! [rejected] feature/my_feature_branch -> feature/my_feature_branch (non-fast-forward)
error: failed to push some refs to 'ssh://git@coderepo.com:7999/repo/myproject.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
त्रुटि से छुटकारा पाने के लिए मैं क्या कर सकता हूं?
पुनश्च: मैं --force
विकल्प का यथासंभव उपयोग करने से बच रहा हूं ।