008 Introduction to Git Submodules

  Рет қаралды 71,931

Dan Gitschooldude

Dan Gitschooldude

Күн бұрын

Пікірлер: 52
@pavelgak3972
@pavelgak3972 7 жыл бұрын
I suggest to view this vid at least at x1.25 or x1.5.
@CarlosGonzalezNazar
@CarlosGonzalezNazar 7 жыл бұрын
Lol. I tried at 1.5x and it's indeed more watchable.
@JensHeuschkel
@JensHeuschkel 7 жыл бұрын
Thanks for that advice. It was really annoying at x1.0 :D
@al-mothafaral-hasan634
@al-mothafaral-hasan634 7 жыл бұрын
You saved me from falling to sleep ty :D
@leonardomarinovic3492
@leonardomarinovic3492 7 жыл бұрын
I watched it on x0.5 I like to live life on the edge
@DanGitschooldude
@DanGitschooldude 7 жыл бұрын
Good call buddy :)
@bhaaratsharma6023
@bhaaratsharma6023 4 жыл бұрын
This is the most detailed and clear explanation about git submodules. Thank you.
@shahrokhabbasirad2223
@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
@averybai8655
@averybai8655 4 жыл бұрын
Crystal clear. Thanks a million.
@mudyeet_
@mudyeet_ 4 жыл бұрын
5 years later, still relevant.
@kif11
@kif11 8 жыл бұрын
Great video. Thank you for the clarification on a couple confusing points.
@yanivgardi9028
@yanivgardi9028 4 жыл бұрын
Great Video! Very helpful, thank you so much Dan. You are awesome
@EViL3666
@EViL3666 5 жыл бұрын
Not a pro developer (these days) but still dabble in the odd few scripts - this was really helpful, thank you.
@ynny7885
@ynny7885 5 жыл бұрын
Thank you, you explained the git submodules concept very well.
@prakashk78
@prakashk78 9 жыл бұрын
Great video on git submodules, thanks !
@DanGitschooldude
@DanGitschooldude 9 жыл бұрын
+Prakash Kamliya You're very welcome!
@Metachief_X
@Metachief_X 6 жыл бұрын
thanks man, was really stuck with a project using submodules..thanks!
@RoganShimmin
@RoganShimmin 8 жыл бұрын
In your summary at 25:57 you type "git add submodule..." Should that be "git submodule add..." ?
@BanglawalaNeesarg
@BanglawalaNeesarg 5 жыл бұрын
Such an informative video! Thank you!!
@muhammadfaateh6463
@muhammadfaateh6463 4 жыл бұрын
thank you for your detailed tutorial
@inlinex
@inlinex 9 жыл бұрын
this the video i've been searching
@Tatulak
@Tatulak 3 жыл бұрын
Thanks! You did help me a lot to understand this mess lol
@ilkercankaya3779
@ilkercankaya3779 4 жыл бұрын
extremely useful video, thank you
@IoTRepublic
@IoTRepublic 5 жыл бұрын
Thanks a lot! By the way, excellent explanation!! Thanks again!!!
@ANSIcode
@ANSIcode 4 жыл бұрын
The video stream seems to be messed up a bit... the console images don't always update when they should
@viperv26
@viperv26 8 жыл бұрын
Very useful - thanks for the tutorial! P.s. submodules are badass :)
@niteshrawat576
@niteshrawat576 5 жыл бұрын
Nice video. Thanks for making it. :)
@radioactive012
@radioactive012 6 жыл бұрын
great tutorial, keep going buddy
@OliverUnderTheMoon
@OliverUnderTheMoon 8 жыл бұрын
Superb explanation.
@rahulchaurasia1501
@rahulchaurasia1501 6 жыл бұрын
Very nice video. Thanks
@ruixue6955
@ruixue6955 6 ай бұрын
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
@scratchbin
@scratchbin 2 ай бұрын
Thank you.
@vagueanxiety42
@vagueanxiety42 6 жыл бұрын
Great video, thank you!
@AhmadShrif
@AhmadShrif 6 жыл бұрын
Great video, I did not find a video for git subtree , are you planning to make one for git subtree?
@DanGitschooldude
@DanGitschooldude 6 жыл бұрын
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!
@justinoneill2837
@justinoneill2837 6 жыл бұрын
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?
@DanGitschooldude
@DanGitschooldude 6 жыл бұрын
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.
@justinoneill2837
@justinoneill2837 6 жыл бұрын
thanks for your feedback!
@anatoliidanylko7736
@anatoliidanylko7736 7 жыл бұрын
Cool! Thanks man!
@rajat.sharma16
@rajat.sharma16 7 жыл бұрын
great video. thanks
@wenchengju5243
@wenchengju5243 8 жыл бұрын
Thank you very much !
@zhuk462
@zhuk462 5 жыл бұрын
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.
@alexgo4641
@alexgo4641 7 жыл бұрын
try this out man: git config credential.helper 'cache --timeout={time_in_seconds}' thanks 4 video
@MrFab233
@MrFab233 8 жыл бұрын
Dat voice
@kostasbogiatzakis1647
@kostasbogiatzakis1647 8 жыл бұрын
Great, thank you
009 More about git submodules
19:47
Dan Gitschooldude
Рет қаралды 13 М.
032 Introduction to Git Subtrees
20:43
Dan Gitschooldude
Рет қаралды 43 М.
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН
How to have fun with a child 🤣 Food wrap frame! #shorts
0:21
BadaBOOM!
Рет қаралды 17 МЛН
БАБУШКА ШАРИТ #shorts
0:16
Паша Осадчий
Рет қаралды 4,1 МЛН
So You Think You Know Git - FOSDEM 2024
47:00
GitButler
Рет қаралды 1,3 МЛН
How to git submodule tutorial
24:59
Cameron McKenzie
Рет қаралды 50 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 254 М.
045 Introduction to Git LFS (Large File Storage)
14:41
Dan Gitschooldude
Рет қаралды 55 М.
Learn Git - The Full Course
4:20:00
Boot dev
Рет қаралды 151 М.
Introduction to Git - Branching and Merging
28:48
David Mahler
Рет қаралды 491 М.
An Improved Workflow for Submodules - Git Merge 2022
29:39
004 Git remote, fetch, merge, and pull
25:40
Dan Gitschooldude
Рет қаралды 20 М.
Advanced GIT for Developers - Lorna Jane Mitchell - Laracon EU 2015
1:00:47
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН