যখন আমি একটি করি git commit -a
, আমি নিম্নলিখিতগুলি দেখছি:
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch better_tag_show
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: ../assets/stylesheets/application.css
# modified: ../views/pages/home.html.erb
# modified: ../views/tags/show.html.erb
# modified: ../../db/seeds.rb
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# ../assets/stylesheets/
# ../views/pages/
এই অপ্র্যাক্ট করা ফাইলগুলির অর্থ কী? সমস্ত পরিবর্তনগুলি সত্যই ট্র্যাক করা হয়েছে। আমি বুঝতে পারছি না কেন গিট আমাকে এখানে অপ্রকাশিত ফাইল সম্পর্কে সতর্ক করছে।
সম্পাদনা :
ঠিক আছে আমি প্রচুর বিভ্রান্ত উত্তর দেখতে পাচ্ছি। আমি git commit -a
এই পরে এই কি ঘটে ।
# On branch master
nothing to commit (working directory clean)
আপনি দেখতে পাচ্ছেন, চারটি ফাইল ছাড়া আর কিছুই নেই যা পরিবর্তনগুলি প্রয়োগ করেছিল।
আমার প্রশ্নটি নিম্নরূপে পুনঃস্থাপন করা উচিত: যখন এই প্রতিশ্রুতিবদ্ধ সমস্ত পরিবর্তন ট্র্যাক করা হয়েছে তখন গিটার আমাকে অপ্রকাশিত ফাইলগুলি সম্পর্কে কেন সতর্ক করছে?
অন্য কথায়, গিট কমিট মেসেজের অদক্ষিত সতর্কতা কি অপ্রয়োজনীয় ?
(use "git add <file>..." to include in what will be committed)