Тёмный

GIT 3 Branching Strategy | Github and GitLab Branching Strategy | Must know for all engineers 

Concept && Coding - by Shrayansh
Подписаться 128 тыс.
Просмотров 29 тыс.
50% 1

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@nikrajput3512
@nikrajput3512 Год назад
Hey Shrayansh ,You had told that you won't make other than Interview questions as private .But you made one of the most important topic : Concurrency Handling as Members only .This is not fair yaar
@vishalghanghav748
@vishalghanghav748 Год назад
Oh ,is that video uploaded .I thought he is still creating it. Before he had informed that it would be public
@prashantsingh-ve9nh
@prashantsingh-ve9nh 19 часов назад
Thank you
@kcchennupati
@kcchennupati Год назад
6:52 I think we need to merge hotfix version(v1.1) from master to develop branch(v2) as well when we are back merging to release branch(v2) or back merge release (v2+hot fix) to develop (v2).otherwise if a new release(v3) is created from develop(v3)..it might have lost hot fix update(v1.1).
@ConceptandCoding
@ConceptandCoding Год назад
Right, whenever we start release process, always compare relase with develop, if there are any new changes present, first do back merge.
@prasenjitsutradhar3368
@prasenjitsutradhar3368 Год назад
Looking for Branching Strategy for a long time......thanks a lot!
@ConceptandCoding
@ConceptandCoding Год назад
Hope you will find this video useful
@TheGlobalITSolutions
@TheGlobalITSolutions 2 месяца назад
Very well explain the concept. Love it.
@haider.memories
@haider.memories 4 месяца назад
Perfect explaining. Thanks!!
@AshishGusain17
@AshishGusain17 Год назад
Hi Shrayansh..thnx for the video. Query: Is the only use case of master branch is when we get a bug in prod and regression testing is going on in release branch?
@ConceptandCoding
@ConceptandCoding Год назад
This is one of the use case on top of my mind. But let me think for more usecases
@nishantvishwanadha2912
@nishantvishwanadha2912 Год назад
Thanks a lot for detail and pictorial explantion
@ConceptandCoding
@ConceptandCoding Год назад
Thanks
@ArunMohanan-w9x
@ArunMohanan-w9x 2 месяца назад
I don't see anything useful when it comes to a scenario where we have multiple features under development in parallel and we go for release any of them to production
@lavishkeyboard
@lavishkeyboard 3 месяца назад
Hi, My question is that suppose have V1 feature on all the branches. Then we develop a new feature on V2 on dev and push to release V2. After that develop a new feature V3, V4, V5 and Pushed to Release. Now the Dev and Release branch are synched. But now, we want to deploy only feature V3 from Release to Production. How to do that without creating hotfix. Thanks in advance
@ragupathia2316
@ragupathia2316 5 месяцев назад
excel
@PiyushGhosh-l4k
@PiyushGhosh-l4k 8 месяцев назад
how trunk based deployment strategy works then ?? can u please tell
@ConceptandCoding
@ConceptandCoding 8 месяцев назад
ack
@shm8296
@shm8296 6 месяцев назад
how the dev branch take the changes to QA branch through pr? or git merge?
@Lokesh-el4mx
@Lokesh-el4mx 6 месяцев назад
❤🎉
@swaroop.aaleti
@swaroop.aaleti 2 месяца назад
Nicely explained. Thanks
@heygokul
@heygokul 11 месяцев назад
Well explained. Thanks!
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Thanks
@anilsahu5709
@anilsahu5709 Год назад
Hotfix back merge to Release might impact regression
@ConceptandCoding
@ConceptandCoding Год назад
Nope, the usecase where we merge hotfix (or in this case say bugfix) in release when new build is in Live and during monitoring we find an issue, and we want to fix on top of that new release only. Till backmerge is not done, new release and regression can not start.
@theSDE2
@theSDE2 Год назад
This is awesome. Shreyansh can you teach us what is the ideal way to do a bug bash in the team for our application or just for the Backend.
@ConceptandCoding
@ConceptandCoding Год назад
Thanks, sorry I did not understand the question properly
@theSDE2
@theSDE2 Год назад
@@ConceptandCodingSo generally after we have built some features in team, then we follow some testing of our features. With respect to that I have seen teams doing BUG BASHING. I wanted to check if you know how it should be conducted?
@yuvhrajverma9665
@yuvhrajverma9665 Год назад
Sir till when are u planning to complete ur system design course, it would be really helpful if u complete it early
@ConceptandCoding
@ConceptandCoding Год назад
I am working toward it buddy, will complete it as soon as possible
@yuvhrajverma9665
@yuvhrajverma9665 Год назад
@@ConceptandCoding ok sir
@alen740926
@alen740926 11 месяцев назад
thanks - when we create the hit fix branch out of master branch for production issue- where/ which environment are we testing the "hot fix" before pushing to production again? given Dev & lower environments has exsiting new features being tested?
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Hi alen, thanks for the super thanks. Means lot to me. Once we have created the hotfix branch out of master, we can test it on stage environment (QA) In stage environment, you can deploy the component which you want to test and run your FT or particular scenario from postman and get validate it.
@alen740926
@alen740926 11 месяцев назад
​@@ConceptandCoding thanks for replying- so based on your input - in that case - does QA contain both new features (version 2,3 being tested) + hotfix code? or ONLY the hoxfix code? (version1 +hotfix code) - will this interupt the regression? and what if there is conflict between hotfix and new features?
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
@@alen740926 regression is happening with Release branch manifest(which has feature 1 and 2) and Hotfix is happening with Live changes + Bugfix changes. Release regression can go in parallel with Hotfix manifest regression
@alen740926
@alen740926 11 месяцев назад
@@ConceptandCoding so basically - use hoffix branch to manually deploy into QA environment (obviously we need to cooridnaten with developers to not push any other changes to QA during that time) while regression can still be going-on in UAT/release branch...? and once verficition is done in QA then we can use hotfix branch for production issues...
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
@@alen740926 i see some gap with the understanding of QA environment. Feel free to ping me on LinkedIn, we can have a quick call and sync up on this.
@vishalghanghav748
@vishalghanghav748 Год назад
Interview on Monday .Concurrency ka video aa jaaye to maja aa jayega
@ConceptandCoding
@ConceptandCoding Год назад
let me work this weekend buddy. Or pls ping me on linkedin, we can discuss for 15, 20 mins, if you have any doubts with concurrency, hope i would be able to answer those. Good luck for your interview.
@motivation_hubPJ
@motivation_hubPJ Год назад
Thanks a lot for the video . In our org we don't keep release and master separate . Mine is not MNC though. But i feel there are certain advantages for the same. First in case multiple teams are deploying in prod in same day then it becomes difficult to monitor to separate release version on prod. Second in our org we have restrictions on which branch can be deployed in prod . We can only deploy master in prod. This helps to maintain consistency . Also it becomes easier to find out what is the diff btw code in prod and qa envs. Lastly on the point of hot fix. we do have a lot of hotfixes but usually we don't face problems with same because any hotfix will be merged via pr and the code diff will always show the changes. Not sure if this is a correct way but is working for know. Please let me know your pov on this or why it may not be a approach . Also Shreyansh if possible can we have a community channel of discord /slack . Have a lot to discuss with you 😅. Thanks again for all your informative video.
@ConceptandCoding
@ConceptandCoding Год назад
:) thanks for the details. I have the telegram group, pls check the channel home page top right corner
@Akash-Harale
@Akash-Harale 10 месяцев назад
bro is there any vacancy for a MERN stack developer in your org?
Далее
Git Branching and Merging - Detailed Tutorial
54:28
Просмотров 211 тыс.
Branching Strategies Explained
18:19
Просмотров 137 тыс.
Git vs. GitHub: What's the difference?
10:06
Просмотров 396 тыс.
How GIT works under the HOOD?
16:01
Просмотров 198 тыс.
Git rebase is not that scary
21:44
Просмотров 21 тыс.