Nice vid! Some more information for the git newbies out there: 1. HEAD is a shortcut for "the commit this repo is currently checked out to" 2. A git branch is just a pointer to a single commit that can move when actions (merge, checkout, reset, rebase) are taken 3. Branches in git are largely ephemeral -- where they point changes over time and there's no precise record of where any branch has pointed in the past. This is largely not a problem because the true history of the repo lies within commits and their parental relationships. 4. At 10:00, the merge of develop into master is fast-forward, so master just moves from beca713 to 40c841c without the creation of a merge commit. Fast-forward merges happen when there's no divergence in code between the branches being merged. This is atypical (and often not allowed) for merge/pull request workflows.
@Cognitive-Programmer4 жыл бұрын
Thanks for your valuable insights 🙏🙏🙏
@chethannv2.08 ай бұрын
I was looking for a perfect KZbin channel for a simplified and easy understanding and have seen more than 50 youtube channels and finally happy that i found your channel sir. Thank You so much you filled confidence in me. I am happy to learn.
@Cognitive-Programmer7 ай бұрын
Thank you so much for your kind comment 🙏
@swathivenkatesh7761 Жыл бұрын
Thank you sir! Very simplified way of explaining
@Cognitive-Programmer Жыл бұрын
Thank you so much 🙏
@arkaneamper637020 күн бұрын
Thank you so much sir. I have learned a lot and I think I am ready for our exam. You are a blessing❤
@pradeepmca5 ай бұрын
Very crisp and super useful video. Very good and simple explanation. Thanks a lot!
@Cognitive-Programmer5 ай бұрын
Thank you so much for your kind words 🙏
@divya276 Жыл бұрын
Excellent series of GitHub I am a student of UWA n your videos is very helpful for learn my concept ty
@Cognitive-Programmer Жыл бұрын
Thank you so much 🙏
@zakiasmaa68343 ай бұрын
Thank you a lot Sir, you simplified the concept and it's ver clear, thans again
@Cognitive-Programmer3 ай бұрын
Thanks for your comment 🙏
@SoumyadeepBasu-qy3qkАй бұрын
Simple and great explanation.
@Cognitive-ProgrammerАй бұрын
Thanks 🙏
@NirajNirala-e3o10 ай бұрын
Excellent sir...simple and effective
@Cognitive-Programmer9 ай бұрын
Thank you so much for your comment
@sameerkumar18842 жыл бұрын
I like your pace.. Thank you for this informative video
@Cognitive-Programmer2 жыл бұрын
Thanks for your comment
@amarkallappa80574 ай бұрын
It very wonderful platform to learn many things thanks lot sir ❤❤
@Cognitive-Programmer3 ай бұрын
Thank you 🙏
@saikrishna12232 Жыл бұрын
we can also use git switch to switch into different branch.
@terzuxtech2 жыл бұрын
Can't stop watching Thank You very much
@Cognitive-Programmer2 жыл бұрын
Thanks a lot for taking time out to write the comment.. Thanks again 🙏
@Dileepkumar-es6rm2 жыл бұрын
@@Cognitive-Programmer can u do further videos on git
@Cognitive-Programmer2 жыл бұрын
Thank you for reaching out.. will definitely consider 🙏
@sirigidivasu3567 Жыл бұрын
Sir , your explanation skills are very nice 💚💚, i clearly understood, please sir can you make some more videos on git..
@Cognitive-Programmer Жыл бұрын
Thanks for your comment & valuable suggestion 🙏
@lyricsque224010 ай бұрын
Very good explanation!
@Cognitive-Programmer9 ай бұрын
Thanks for your comment
@mondemlanshmi Жыл бұрын
good video to learn heard things in simple way thank you
@Cognitive-Programmer11 ай бұрын
Thank you so much 🙏
@sameerkumar18842 жыл бұрын
Dear Sir, How do we delete barnch simultaneously when we push it git ?
@terzuxtech2 жыл бұрын
Your video helped me alot Thank You...If we were to rate videos, I would have given you 5 stars but for now, it is a thumbs up 👍
@Cognitive-Programmer2 жыл бұрын
Thank you so much for your kind words 🙏
@joshuaafolabi80 Жыл бұрын
Thank you sir. I love your teaching. It is so simplified. Please i want to learn Python. Put me through.
@Cognitive-Programmer Жыл бұрын
Thank you so much for your appreciation. Thanks a lot. I do have a python playlist, have a look kzbin.info/aero/PL_dsdStdDXbqK2e5knrsErF3VpRK3fyO5 All the best for your learning. Thanks 🙏
@arushsingh559010 ай бұрын
bro you're good. Really good
@Cognitive-Programmer9 ай бұрын
Thank you so much for your comment
@anandgomaskar2210 Жыл бұрын
thanku so much sir great video understandeble very much
@Cognitive-Programmer Жыл бұрын
Thanks you so much for watching my video 🙏
@terzuxtech2 жыл бұрын
pls i want you to make a video on flutter_bloc package pls
@MyCodeBytez9 ай бұрын
Appreciate your efforts sir but why we need to do merge instead we can do push easily.
@Cognitive-Programmer9 ай бұрын
Many people might be doing the changes simultaneously. hence we need to merge, Hope it helps. Thanks for your comment 🙏
@MyCodeBytez9 ай бұрын
If we take pull before pushing is enough than merging, is not it?
@Cognitive-Programmer9 ай бұрын
Hi This may work if you have small co located teams.. but in the larger systems you may not able to control when someone does the checking Hope it helps Thanks
@MyCodeBytez9 ай бұрын
If you get time, could you make a video that shows difference between branch merging vs pull and push.