I suggest to view this vid at least at x1.25 or x1.5.
@CarlosGonzalezNazar7 жыл бұрын
Lol. I tried at 1.5x and it's indeed more watchable.
@JensHeuschkel7 жыл бұрын
Thanks for that advice. It was really annoying at x1.0 :D
@al-mothafaral-hasan6347 жыл бұрын
You saved me from falling to sleep ty :D
@leonardomarinovic34927 жыл бұрын
I watched it on x0.5 I like to live life on the edge
@DanGitschooldude7 жыл бұрын
Good call buddy :)
@bhaaratsharma60234 жыл бұрын
This is the most detailed and clear explanation about git submodules. Thank you.
@shahrokhabbasirad2223 Жыл бұрын
Awesome. You solved my problem. I was stuck with this fatal error when running the submodule update --init. And you showed where I was doing it wrong. Thanks
@averybai86554 жыл бұрын
Crystal clear. Thanks a million.
@mudyeet_4 жыл бұрын
5 years later, still relevant.
@kif118 жыл бұрын
Great video. Thank you for the clarification on a couple confusing points.
@yanivgardi90284 жыл бұрын
Great Video! Very helpful, thank you so much Dan. You are awesome
@EViL36665 жыл бұрын
Not a pro developer (these days) but still dabble in the odd few scripts - this was really helpful, thank you.
@ynny78855 жыл бұрын
Thank you, you explained the git submodules concept very well.
@prakashk789 жыл бұрын
Great video on git submodules, thanks !
@DanGitschooldude9 жыл бұрын
+Prakash Kamliya You're very welcome!
@Metachief_X6 жыл бұрын
thanks man, was really stuck with a project using submodules..thanks!
@RoganShimmin8 жыл бұрын
In your summary at 25:57 you type "git add submodule..." Should that be "git submodule add..." ?
@BanglawalaNeesarg5 жыл бұрын
Such an informative video! Thank you!!
@muhammadfaateh64634 жыл бұрын
thank you for your detailed tutorial
@inlinex9 жыл бұрын
this the video i've been searching
@Tatulak3 жыл бұрын
Thanks! You did help me a lot to understand this mess lol
@ilkercankaya37794 жыл бұрын
extremely useful video, thank you
@IoTRepublic5 жыл бұрын
Thanks a lot! By the way, excellent explanation!! Thanks again!!!
@ANSIcode4 жыл бұрын
The video stream seems to be messed up a bit... the console images don't always update when they should
@viperv268 жыл бұрын
Very useful - thanks for the tutorial! P.s. submodules are badass :)
@niteshrawat5765 жыл бұрын
Nice video. Thanks for making it. :)
@radioactive0126 жыл бұрын
great tutorial, keep going buddy
@OliverUnderTheMoon8 жыл бұрын
Superb explanation.
@rahulchaurasia15016 жыл бұрын
Very nice video. Thanks
@ruixue69556 ай бұрын
0:43 fake example: use the *trick* simulation framework to do the simulation 1:56 purpose of *submodule* 2:10 why need a submodule (the *trick* project in the example) 2:32 purpose: let you tie the specific *commit* to the development flow of the repo you care about 3:12 *if you want to include a third-party dependency in your repo, a good way is to use git submodule* 3:48 demo 4:31 command: git submodule add 5:54 *.gitmodules* file 8:43 commit the change including added submodule 10:24 change code in *trick* repo 11:00 sub-module has no knowledge of its parent (carsim in the example) 16:30
@scratchbin2 ай бұрын
Thank you.
@vagueanxiety426 жыл бұрын
Great video, thank you!
@AhmadShrif6 жыл бұрын
Great video, I did not find a video for git subtree , are you planning to make one for git subtree?
@DanGitschooldude6 жыл бұрын
I hope so, I know a little bit about git subtrees but I don't feel like I know enough to be confident in making a video on the topic. One day, though. Thanks for watching!
@justinoneill28376 жыл бұрын
I'm trying to piece this together with *node_modules* , *bower_components* , and now *git submodules* .., Someone that I know said "why not just create a *Node Module* and npm install? What's your thoughts on this?
@DanGitschooldude6 жыл бұрын
I don't have much web software experience so I can't necessarily comment on how node or bower modules should be implemented, but usually you want to keep the concept of software modules separate from git submodules. In general you want submodules to be 3rd-party independently testable code that is intended to be shared across projects. Software components should not be broken into submodules just because they are logically separate things. I ALWAYS suggest leaning towards fewer submodules if possible. In fact if you can get away with no submodules, that should be your first approach.
@justinoneill28376 жыл бұрын
thanks for your feedback!
@anatoliidanylko77367 жыл бұрын
Cool! Thanks man!
@rajat.sharma167 жыл бұрын
great video. thanks
@wenchengju52438 жыл бұрын
Thank you very much !
@zhuk4625 жыл бұрын
Too many words, too slow.. You should make your terminal's screen smaller in order to allow us to see clearly what you are showing and typing when we pause the video.
@alexgo46417 жыл бұрын
try this out man: git config credential.helper 'cache --timeout={time_in_seconds}' thanks 4 video