কোন আর্গুমেন্ট অনুসরণ যখন কমান্ড 'গিট রিবেস' মানে কি?


5

'গিট রিবেস' অন্তত একটি যুক্তি নিতে হবে? শুধু 'গিট রিবেস' এর অর্থ কী?

উত্তর:


6

মানুষের পাতা থেকে নেওয়া ( 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>যতক্ষণ ইতিমধ্যে এই শাখার জন্য একটি কনফিগারেশনের আপস্ট্রিম বিদ্যমান রয়েছে - অন্যথায়, এটি অবতরণ করে।

আপনি যদি শুধুমাত্র এটির একটি যুক্তি দেন তবে এটি আপনাকে প্রবাহিত শাখায় রাখা অবস্থায় আপস্ট্রিম শাখাটির নাম হবে।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.