Answer the question
In order to leave comments, you need to log in
Understanding branches, how to use correctly?
Hello. After reading the documentation , there is some misunderstanding about branches in Git.
Let's say I want to make a branch for localization and I only need some files.
Would it be right to do so? And how to add exactly the right files to the branch?
Answer the question
In order to leave comments, you need to log in
Let's say you have a dev branch and you need to make some changes to your application. Create an issue branch and switch to it. Make changes, create a commit. Switch to the dev branch and merge.
Good book habrahabr.ru/company/enterra/blog/241525
В git ветка это отдельная версия программы(условно). Зачем нужна отдельная версия программы? Ну допустим что бы добавить необходимый функционал не мешать другим программистам(и себе) с другими задачами своими изменениями и так же если вдруг вам не понравилось что вы делаете и вы решили отказаться от затеи то легкой сменой ветки вы можете вернуться в нужное вам состояние. После того как все необходимые изменения в ветке сделаны и вы добились нужного вам результата то обычно делается слияние этой новой ветки с вашей основной(обычно master).
Branch does not copy files. Only changes since the branch split from master.
And what does "a branch for localization" mean?
Look at the translation of the article on Habré , which proposes the concept of organizing a workflow with git. Original article in English .
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question