'গিট রিবেস' অন্তত একটি যুক্তি নিতে হবে? শুধু 'গিট রিবেস' এর অর্থ কী?
'গিট রিবেস' অন্তত একটি যুক্তি নিতে হবে? শুধু 'গিট রিবেস' এর অর্থ কী?
উত্তর:
মানুষের পাতা থেকে নেওয়া ( git help rebase ):
git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
[<upstream>] [<branch>]
git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
--root [<branch>]
git rebase --continue | --skip | --abort | --edit-todo
If <branch> is specified, git rebase will perform an automatic git
checkout <branch> before doing anything else. Otherwise it remains on
the current branch.
If <upstream> is not specified, the upstream configured in
branch.<name>.remote and branch.<name>.merge options will be used; see
git-config(1) for details. If you are currently not on any branch or if
the current branch does not have a configured upstream, the rebase will
abort.
এই যে মানে git rebase, একা, ডিফল্ট git rebase branch.<name>.remote branch.<name>যতক্ষণ ইতিমধ্যে এই শাখার জন্য একটি কনফিগারেশনের আপস্ট্রিম বিদ্যমান রয়েছে - অন্যথায়, এটি অবতরণ করে।
আপনি যদি শুধুমাত্র এটির একটি যুক্তি দেন তবে এটি আপনাকে প্রবাহিত শাখায় রাখা অবস্থায় আপস্ট্রিম শাখাটির নাম হবে।