Learn Git Essentials 8: Git Branch

preview_player
Показать описание
One of the main purpose of Git was to introduce a branched workflow in development environments. It has many advantages whether you are working with a team or alone. Incorporating branched workflow is a good developmental practice and it is made possible by Git's branch command.

Git branch allows you to create, modify content, delete and even merge one branch over the other. In this video, we will touch all the above cases and will take an example to understand it much better.

Enjoy the video.

____________________

Hmm, I wonder where these links takes us :

____________________

ZBunker is a community that is run by a bunch of university students with strong grasp on computer science fundamentals.
The channel will walk you through some of the popular programming languages and how you can develop a skill set in this tech domain.

We strive to provide free and quality education for all. We firmly believe that open source is the way forward. So, by making these videos, we are encouraging and empowering you to do open source contributions and give back to the community.

We are learners. We are coders. Let's make an impact.

____________ WE NEED YOUR SUPPORT ______________

We strive to make education free 4 all. We would love to share this to as many audiences as possible. This won't be possible without your support. So, if you liked our videos, kindly consider subscribing to our channel.

Support us on:

Drop us a Feedback:
Рекомендации по теме
Комментарии
Автор

I really love your explanation style, well and precise, thanks.

arifmohiuddin
Автор

So in the 1st way, first we create a branch then write the command git checkout branchname and in the 2nd way we have to just use git checkout -b branchname. I like the 2nd one, and one more thing before deleting a branch we need to make sure that we're not in that branch or we'll get an error

awlledmusic
Автор

Suppose I have a complete project I was working on and it's already committed to the master branch. Now I thought that there are some changes that I should do to make my project more interesting. So in that case you just explain we can commit our files to the features branch and work on that file without changing the one which is already committed onto the master branch. So I am just confused if I have a file password.py and I would like to change some statements in that, and suppose for now it's committed to the master branch. So how can I add it to a feature branch and test it without affecting the one on the master branch.

awlledmusic