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
যতটা সম্ভব বিকল্পটি ব্যবহার করা এড়িয়ে চলেছি ।