Branches என்பது Git இல் மुख்य வளர्यاकাশमிருந்து விலகிவெளிப்படுத்த உங்கள் வேலையை தனிமைப்படுத்தப்பட்ட வகையில் செய்ய அனுமதிக்கிறது — முக்கிய குறியீட்டைப் பாதிக்காமல். அவை எளிமையானவை மற்றும் Git பணிப்பாய்க்கு மூலமானவை, இணையான வேலை மற்றும் பாதுகாப்பான சோதனை செயல்படுத்தக்கூடியவை.
Branch என்பது என்ன
A branch is a MOVABLE POINTER to a commit. The default is usually "main".
→ creating a branch = creating a new pointer (cheap/instant — not a copy of files)
→ commits on a branch advance that branch's pointer
→ branches let you work on different things in parallel, isolated from each other
Branches (commits க்கு pointer மாত்திரம், நकல் அல்ல) — எனவே branches তৈরி மற்றும் மாற்றல் வேகமாக மற்றும் குறைந்த செலவில் உள்ளது, இதனால் Git branching விபுலமாகப் பயன்படுத்தப்படுகிறது.
