Git Tutorial For Dummies

Поделиться
HTML-код
  • Опубликовано: 30 окт 2024

Комментарии • 1,9 тыс.

  • @ankushnothere
    @ankushnothere 3 года назад +2496

    @Nick White, bro I got teary eyes watching this video because first time in my life something just goes into my head and just stays there in one try Idk how Idk what happened but it happened. Thank you (btw I know how to use git but this is something else)

  • @waleeddib7096
    @waleeddib7096 3 года назад +3786

    Btw in all honesty. If you start a for dummies series you’re going to blow up on RUclips. It takes skill to dumb down things.

    • @153ridzzzz
      @153ridzzzz 3 года назад +79

      I would say it takes ALOT of skill.

    • @flowerofash4439
      @flowerofash4439 2 года назад +55

      just like einsten used to say "if you can't enough it explain, you don't simply it well understand"
      or something like that

    • @kools67
      @kools67 2 года назад +8

      @@flowerofash4439 soooo funny - you are a genius, Ash

    • @flowerofash4439
      @flowerofash4439 2 года назад +8

      @@kools67 obviously i am

    • @Thecowthatcould55
      @Thecowthatcould55 2 года назад +4

      Fr. Hope he sees your comment.

  • @JasonBillingham
    @JasonBillingham 8 месяцев назад +99

    Two years later and this is still by far the best Git tutorial I've found on RUclips. Simple, easy to understand, and didn't want to make me tear my hair out. Thank you for de-mystifying Git and GitHub for me and showing me how simple the basics really are.

    • @fharoe
      @fharoe 4 месяца назад

      second that

    • @NSA.
      @NSA. 3 месяца назад +1

      *3

    • @FrancoSerrao
      @FrancoSerrao Месяц назад

      Except he only made one vid and didn’t do the other he mentioned

  • @HeaBerty
    @HeaBerty 8 месяцев назад +45

    "If you can't explain it simply, you don't understand it well enough."

  • @buildwithcode9743
    @buildwithcode9743 3 года назад +1496

    To Nick: Can u please make this a series for other topics as well? To the others: Upvote this comment if you share the same thought ;)

    • @thehunted316
      @thehunted316 3 года назад +15

      I swear, his teaching pattern is so good. I wish he has a javascript and golang course like this.

    • @muhammadjunaid3684
      @muhammadjunaid3684 3 года назад +8

      I was commenting the same thing. yesh bro. He should!

    • @triumphprince5402
      @triumphprince5402 Год назад

      💯

    • @gto4467
      @gto4467 Год назад +2

      A Redditer "Upvote"😂

    • @rimberioxgaming
      @rimberioxgaming Год назад +1

      @@gto4467 many people js say upvote I started using upvote because of udemy not everything is reddit

  • @yuji9774
    @yuji9774 Год назад +34

    I love how he seems impatient and drags his voice over every sentences. It cracks me up and keeps me interested. Thank you dude!!

  • @sraynitjsr
    @sraynitjsr 3 года назад +823

    This video is 1000000000000 times better than any 5, 10 Hour long playlist out there on RUclips, simply awesome

  • @transcend8826
    @transcend8826 Год назад +380

    I like how he seem so frustrated while I'm understanding everything he said. Learning is so much fun

    • @vihrigapozax4592
      @vihrigapozax4592 7 месяцев назад +14

      :D true.
      I felt like he just shared my frustration about the fact that people have never actually said these basic things to me aloud, because they are so trivial that I should be able to read them from my teachers mind. Which I haven't been able to do, surprisingly.

    • @Kathryn-r3p
      @Kathryn-r3p 3 месяца назад

      All I use is a mobile phone

  • @JStephs1950
    @JStephs1950 Год назад +355

    At 72 years old and more than one college degree, I've had my share of bad teachers, and good teachers, and so-so teachers. When @Nick started off saying he was going to teach Git like we were 5 years olds, I immediately "liked" this video and subscribed. That's my idea of the best way to teach. The worst teachers have always been those who forget what it was like to not know something; coincidentally, most of them were more interested in showing how much they knew instead of trying to impart their knowledge to students. That was a combination of faults deadly to an enjoyable, informative class.
    The only thing that will convince me to come back and remove my "like" is if he doesn't live up to the promise and starts getting all complicated and laden with detail. I look forward to finally being able to get something out of Git.

    • @gergemall
      @gergemall 10 месяцев назад +8

      68 years old here with graduate school degrees and I enjoy learning. Great instructor. Thx

    • @hoofheartedicemelted296
      @hoofheartedicemelted296 9 месяцев назад +4

      55 year old here. I agree with the positive things said about the teaching method here. Liked and Subscribed.

    • @charliearmour1628
      @charliearmour1628 8 месяцев назад +1

      Here here. Me too.

  • @csipawpaw7921
    @csipawpaw7921 10 месяцев назад +21

    I'm an old retired guy trying to get back into learning programming . I use to do it as a hobby back in the late 70s080s, back in the days of hexadecimal programing. So I need all the help I can get and I need it as simple as passable. Thank you for understanding the needs of people like myself.

    • @rongarza9488
      @rongarza9488 8 месяцев назад

      @csipawpaw7921 I'm an old retired programmer too. Python, SQLite3, RegEx and the like were fairly straight forward, and enjoyable learning experiences. What I am seeing though is that there are actually millions of young people -- with these skills and recent college degrees -- going nowhere with this. I hope you are not hoping to get a job. If you are and if you do, that would be great, please tell us all.

  • @Jonathan_Strange
    @Jonathan_Strange Год назад +266

    For people new to git, it may have become a little confusing at 14:30 where a similar word "pull" is mentioned.
    A "Pull Request" (essentially a request to merge) is not the same as the 'pull' command (which retrieves the latest version from the remote repository).
    A pull request is basically a note (request) to others (usually handled by the owner) to notify them that you have made changes on a branch and want (request) those changes to be merged into the main (usually 'main' or 'master', but may be another relevant branch, like 'UAT') branch. After a short discussion & quality check (or none at all) and a look at the changes (or not) a merge into the relevant branch is usually done.
    _Please feel free to add any comments, corrections or clarifications._

    • @Jonathan_Strange
      @Jonathan_Strange Год назад +39

      ​@@catrybou I agree... based on the context of a Developer it doesn't seem like a logical term to use.
      I suspect it might be similar to the following analogy of the code being like the payload on a row boat. Where we have the following actors:
      A) "Ship" at sea / your Development Environment on your PC,
      B) "Rowboat" / your code in 'transit',
      C) "Dockyard" / Remote Repository (eg. GitHub, Azure DevOps, BitBucket, etc.).
      When you load your code from your Ship (A) onto the Rowboat (B), you "commit" it to the rowboat.
      When you send the Rowboat (B) from your Ship to the Dockyard (C), you "push" it to the shore.
      When you want your code (on the rowboat now waiting in the docks at shore) to be merged into the intended branch, you submit a "pull request" to the Master of the Dockyard to pull your code from the "Rowboat" (B) into the "Dockyard" (C).
      I guess it is context related, ie. in context of the Dockmaster, he would satisfy the "Pull Request" by pulling it onto shore and into the Dockyard.
      _Or at least that's the way that I understand it._

    • @WalterNebedum
      @WalterNebedum Год назад +6

      @@Jonathan_Strange awesome !!!😀

    • @NathanHedglin
      @NathanHedglin Год назад +2

      ​@CatRyBou because 'pull' is a 'fetch' and 'merge'.

    • @debasishghoshsays
      @debasishghoshsays Год назад +1

      @Jonathan_Strange hey how can i connect to you man!i think i can learn a lot from you

    • @Ali_Hassan_jatt
      @Ali_Hassan_jatt 10 месяцев назад +3

      ​@@Jonathan_Strange bro your comment is worth more than the hours of videos I have watched on this topic

  • @Dregun
    @Dregun Год назад +256

    Thank you mommy

  • @screaminscott
    @screaminscott 2 года назад +114

    I like how you started with the concept of using Git to save your progress. Everyone else always starts with the concept of version control and repositories.

    • @amar-vt6wr
      @amar-vt6wr Год назад +4

      Version control is kind of the same concept as saving progress

    • @drbuni
      @drbuni 9 месяцев назад +14

      @@amar-vt6wr "Version control" is not as simple to understand as saving progress to those who aren't deep into programmer lingo.

  • @vihrigapozax4592
    @vihrigapozax4592 7 месяцев назад +11

    "And then you make a repository. Repository means folder. Folder means repository. Same thing." Omg I love this approach.
    I have been stuck sooo many times in things like this. I am very bad at remembering names, addresses, etc, and it affects my studying because I have to google familiar terms all the time. It frustrates me so much and makes me feel so stupid, though I know I am not.
    And also, because I am smart in some ways, like logical thinking (maths, coding, algorithms...), people assume I know stuff, and are genuinely surprised if i ask help in "trivial" things. And then they explain them like I already knew it, so I learn nothing. Being smart and knowing facts and terms are two so different things.
    This video is gold. Thank you.

    • @FastHands1504
      @FastHands1504 16 дней назад

      My uncle works at cisco integrating AI into Cybersecurity. He tried to teach me git during school, because I asked.
      He explained repository as a collection. While I understand that, as someone at the time, who didn't understand git/github at all, it still felt etheral. This tutorial solidified all that confused me.

  • @DJTechReviews
    @DJTechReviews 3 года назад +121

    I have watched sooooo many tutorials on Git, and I can honestly say, this is the best one. By far. Super easy to understand. Well done sir.

  • @algoa456
    @algoa456 Год назад +2

    Hey Nick, even 2 years later your video is still great. It neatly and clearly provides the basis for understanding Git and GitHub without overcomplicating the basics. Excellent. Thank you.

  • @mikeyserrano9748
    @mikeyserrano9748 3 года назад +213

    Even as a 3rd year cs student, Git still confuses tf out of me, so this was VERY much appreciated

    • @Macheako
      @Macheako Год назад +10

      Bro, I personally put that at the feet of college instructors for CS. They NEVER taught me or my class about versioning, available applications, or even the theory behind any of it.
      But boy oh boy did we learn about JPanes 😂❤

    • @johnny_testicles
      @johnny_testicles Год назад

      How did you survive the second year without git?

    • @IsaacFinance
      @IsaacFinance 6 месяцев назад

      hows life treating you know u gitting

  • @steverobinson8771
    @steverobinson8771 Год назад +1

    Honestly, I think making a 'Git tutorial for dummies' video, that is a) concise, b) understandable, and c) engaging is probably one of the hardest things to do really well. This video is easily the best attempt I've seen to date! 😎

  • @alphainfinitum3445
    @alphainfinitum3445 2 года назад +34

    Anyone can give instructions, but very few people can teach. You did an amazing job teaching this small but confusing subject.

  • @giftcp82
    @giftcp82 8 месяцев назад +1

    Nick you have 100% simplified GIt. This is the best tut I have seen on youtube on this topic and I have seen plenty. You have earned my sub

  • @suntechh
    @suntechh Год назад +15

    I don't usually comments on RUclips videos. I'm starting at programming, I know about GitHub (but didn't really understand how it worked). Didn't know Git was a thing. You made exceptionally clear explanation, I've understood everything and I wanted to thank you for that. You definitively gained a subscriber. Keep up the good work !

  • @mo_khorasani
    @mo_khorasani Месяц назад +1

    I subscribed to you because of this one video. It provided a simple and comprehensive explanation of Git. Please create more "for dummies" series on other subjects.🙏

  • @georgizmd5664
    @georgizmd5664 2 года назад +35

    I am learning the fundamentals of Python Coding in a Software University in Bulgaria. Soon, i am about to catch up with git & github. And let me tell u this... Good sir, u are born to be a teacher/trainer! Much better than any other explanations in my whole history of education, i swear! As simple as needed for the mind to "consume" all that space of info. Thank u kindly, good sir!! :) That was a step ahead for me!! :)

  • @GPEART1
    @GPEART1 11 месяцев назад

    This reminds me of how accountants "explain" something, and nobody knows what they are saying.
    Thank you for finally making me understand git and git hub in a couple of minutes!

  • @69k_gold
    @69k_gold Год назад +33

    Most important note. Always use " " for directory paths and file names, this will not throw any errors when the directory or file has spaces in its name

    • @fisterB
      @fisterB Месяц назад

      How about not_using_spaces in files just because you can. Only a fool would mess things up with such names, though old people using windows may be forgiven.

  • @hughmorrison8586
    @hughmorrison8586 10 месяцев назад

    I spent yesterday struggling to understand 'push' 'pull' onto github. This was a great lesson. Thank you.

  • @bingoboingoe
    @bingoboingoe 3 года назад +85

    10x more helpful than any other git tutorial I've seen. Thanks bud.

  • @Mangini037
    @Mangini037 4 дня назад

    3 years on and this video still keeps on giving brother.

  • @debalghosh5412
    @debalghosh5412 3 года назад +71

    You know a tutorial is fire when it keeps you engaged even after a tiring day.
    Watched it till the branch segment, but I swear I will rewatch the entire tut tomorrow

  • @dameanvil
    @dameanvil 8 месяцев назад +6

    00:07 🧠 Simplify complex concepts: Breaking down technical topics like Git in simple, relatable language can make them more accessible and understandable.
    01:12 🛠 Git basics: Git is a crucial tool for programming, akin to a "memory card for code," enabling users to save progress locally on their computers.
    03:32 📝 Git commands: Understanding basic Git commands like git init, git add, and git commit is essential for managing code changes effectively.
    07:01 🌐 GitHub introduction: GitHub is a platform where users can store and share their Git repositories, facilitating collaboration and version control.
    10:38 🔄 Synchronization: Keeping local Git repositories synced with GitHub is crucial for effective collaboration and version control.
    12:51 🔀 Branches: Branches in Git allow for parallel development without affecting the main codebase, enabling users to experiment and make changes independently.
    16:00 🔀 Branch merging: Merging branches allows users to incorporate changes from separate branches into the main codebase.
    18:03 🟢 GitHub clout culture: Beware of "clout chasers" who prioritize quantity (green squares indicating daily commits) over quality contributions on GitHub.

  • @swedishguyonyoutube4684
    @swedishguyonyoutube4684 2 года назад +6

    LOVED this video so much! My professor had a lecture on version control where he causally mentioned Git and GitHub, said we should look into it, and then he gave us like a million different links, and a zoom hangout space where we could ask questions if we were confused like a day or so later. Also, he shared a video where he only used terminal commands. Suffice to say, everyone was so confused they didn't even know what to ask about. THIS, however, is just what you want as a beginner. Basic stuff. Described in simple terms, with simple real life examples. Great job!

    • @conradmbugua9098
      @conradmbugua9098 Год назад

      I loved the game analogy he used, it just clicked after that for me

  • @troutymctrouttrout3809
    @troutymctrouttrout3809 Месяц назад

    I got about 5 seconds into this video and I knew I was in the right place!
    I'm here trying to learn coding, IDE's, game engines, Daz3D and about 30 other software's I apparently need to do my project - and I have some IBM egghead on another channel telling me all the attributes of Git without actually EXPLAINING WHAT THE HECK IT IS OR HOW IT WORKS! I'm SO thankful I found someone to take the time to actually break it down for a beginner because who else is going to even watch a tutorial like this!? Great work tyvm.

  • @fanifyeyev
    @fanifyeyev 3 года назад +8

    Even though it is really descriptive, I would recommend adding some visual explanation as well. I used a really good technique when I explained git flow to my wife.
    I used storage boxes as 'commits': I told her, that a commit represents sealed changes, like a box containing a bunch of things/clothes you want to pack. You can put things/clothes into boxes, label them and later send them to a storage room.
    1. Selecting things/clothes you want to put into the boxes(git add ....)
    2. Putting things/clothes into a box, labeling it and packaging with band (git commit -m "label")
    3. Send the boxes(git push..
    ) to a storage room(origin)
    Of course, that is just a simple usage, but any other commands(revert, etc) can also be used in this scenario.
    That helped her understand the git flow.

  • @unklejon4690
    @unklejon4690 Год назад +13

    Straight up I don’t code, just here passing my retirement time in gods waiting room, but even I followed this explanation. Well done son well done

    • @modi_hemnt77
      @modi_hemnt77 2 месяца назад

      We all present here, are his children.

  • @harrylongofficial6248
    @harrylongofficial6248 2 года назад +27

    I liked and subscribed because after a DOZEN git and GitHub tutorials of people droning on so fast about technical jargon, you put it into fine words of understanding and at a brilliant pace for which I felt in my personal experience. can't wait to discover more great stuff from your channel! My programming work experience starts tomorrow so this was a life saver!

  • @sanny651mn
    @sanny651mn Месяц назад

    Thank you, Nick, for taking the time to make this video. I'm new to git, and am learning on the fly with live production code. Not intimidating in the least.....riiiiiight. I came across this video and gotta say, you immediately got my attention with your delivery style, your lack of "over the top" technical language (much like doctors using an 18 syllable word vs. saying the word "fever"), and your general ability to resonate with your target audience....newbies. Well done lad!

  • @BekBrace
    @BekBrace 2 года назад +40

    Beautiful job explaining, Nick !
    I advise you to make a whole "for dummies" series, it's going to be very useful and successful

  • @KikoJuarez
    @KikoJuarez Год назад +1

    One of the best explanations (not tutorial, this is way better) I've ever seen. Simple, understandable for non-programmers like me, and useful for everyone, regardless of their programming knowledge. Thank you, so, so very much.

  • @smazdev
    @smazdev Год назад +18

    This is pure GOLD!! I wrote my first program chillin' (literally) in a big computer room surrounded by a bunch of mainframe equipment. I've managed to stay abreast of all the latest tech trends and keep current in my skills. That is until I tried to learn web development using Java, Springboot & React. Along with that came git. I've watched at least 15 different tutorial videos, some that droned on forever, then this one popped up in my feed. It was a game-changer for me. Suddenly, CLICK! it all made sense. THANK YOU!!

  • @johntelesengmec
    @johntelesengmec 4 месяца назад

    It’s unreal how you make it look simple. I believe that people who try to explain something in a difficult way, they don’t even know what they are talking about… you do, mate! Thanks!

  • @void791
    @void791 2 года назад +6

    I've been researching all day for short n sweet tutorials but this is the first git / github tutorial I've actually understood. Thank u!

  • @DeskoTEK
    @DeskoTEK 11 месяцев назад

    there is a special place in paradise for people like you dude, honestly the best git tutorial out there !! thank u very much, taking notes while checking this made me understand git better than ever.

  • @heterodoxagnostic8070
    @heterodoxagnostic8070 Год назад +6

    I'm very analytical, but when i don't know the fundamentals of something, this is at least 5 times more effective way of learning for me than usual tutorials, this was AWESOME! thank you very much for this video, i didn't even think i needed to know how git worked, but after clicking this recommended video, i understand that i needed it.

  • @title_anime_yt
    @title_anime_yt Год назад +1

    Thank you, your explanation really helped. Previously, I didn’t know the commands and therefore used buttons in vs code, I didn’t really understand them either, so very often everything broke and it really pissed me off, git was a pain for me. But after your video, I learned the commands you gave and everything now works like a clock. Now I'll try to use git more often.

  • @RutiYT
    @RutiYT 3 года назад +8

    I already know git, but I wish I could take back the time it took me to learn git and watch this video instead. I will pass this video around to my coworkers, I appreciate you man.

  • @drewellis1458
    @drewellis1458 2 месяца назад

    Man, this helped me so much you have no idea. Stopped the video at 13:26 just to type this message. Like I just want to learn how to code and all of these tutorials I watch keep mentioning Git and Github and going there, downloading stuff doing this and that and I had no idea what was going on. It was stopping me dead in my tracks. Why couldn't anybody else just explain it like this? Jeez. It is such a relief when I find videos like this. Thank you so much! I even LOLed when you said I "Do I want to talk about branches? No!"
    These mysterious things (Git and Github) which I though were one thing I was so confused are no longer a mystery.

  • @yaroslavasavchuck6631
    @yaroslavasavchuck6631 2 года назад +8

    Thank you dude, this tutorial was really helpful for me, it’s probably the best tutorial on GIT (at least for beginners). I’d seen many videos, tutorials and different stuff on this topic and still felt myself so stupid ‘cause I just couldn’t get into it, but after your tutorial so many things became clear for me. So now GIT isn’t so scary for me as it was before watching your video. Thank you, keep up your work💪🏼

  • @MAHMOUDIIkram
    @MAHMOUDIIkram 2 месяца назад

    the way you're talking really makes me feel dumb or you just need to get some sleep but it helps a lot and makes everything clear thank you sm

  • @bashisobsolete.pythonismyn6321
    @bashisobsolete.pythonismyn6321 3 года назад +7

    easter sunday and all my stuff got saved. God bless you St. Nick

  • @AnaMacavei-w3m
    @AnaMacavei-w3m 3 месяца назад +1

    @Nick White, Talking the way you did in this video made me actually pay attention and not lose my focus. Even made me laugh on some parts. I thoroughly enjoyed this experience. I hope to see more videos like this because it was just pure gold the whole way. I didn't know what to expect. You're unpredictable when speaking and I think that's what made this video so fun to watch.

  • @edwardwong654
    @edwardwong654 Год назад +4

    I love his refreshing style. He already knows that I am an idiot, uh I mean dummy, so he cut's out the noise. Instead he mentions related areas to give you a better understanding of the WHYS of dooing things to complement the WHATS. Good job! Now I am going to commit my comment.

  • @AasthaSoni-v3z
    @AasthaSoni-v3z 11 дней назад

    cd directory-name
    git init (initialising your folder with git)
    git add . (saves all changes since last save)
    git commit -m 'message abcd..' (commit those changes to memory)
    after push to git repository-
    git push -u origin master
    git checkout -b branch-name (create new branch)
    git push origin new-branch
    After merging new branch with main-
    git pull origin master (to sync everything with local computer)
    extra-
    git log (to see all commits)

  • @thalesesteves
    @thalesesteves 3 года назад +10

    Wow. Never thought i would learn to use GIT in 20 minutes. Great work!!!

  • @jarrettbeach1453
    @jarrettbeach1453 2 месяца назад +1

    I’m only 60% through the video and I’ve learned so much. Thank you

  • @acc.7953
    @acc.7953 3 года назад +5

    dude I literally searched "git for kids" just yesterday and this was in my top recommended,lol. I'm not complaining.crazyyy!!!

  • @cosmicninja629
    @cosmicninja629 4 месяца назад

    I can't believe I missed this 3 years ago. I had never understood git until this video. My dude. Thank you so much.

  • @shivarampalackapillil5283
    @shivarampalackapillil5283 3 года назад +14

    I LOVE YOUR CONTENT, PLEASE KEEP DOING IT PAPA. On a more serious note, this is by far the best video ive seen on youtube, and oh boy did the first 5 semesters of CS forced me to relearn just enough to do what i needed only to completely forget it 6 months later. Your vids have been keeping my interest for the course during this boring ass online classes bs pandemic time.
    Shoutouts to those that interpret stuff as a 5 yo, all the way from brazil.

  • @drewskiwest5284
    @drewskiwest5284 6 месяцев назад

    less than 30 seconds in, i already appreciate your approach
    "talk to me like an idiot"
    step by step, literally like i'm a moron, this is what i'm looking for
    hopefully as we're gonna see once i finish video i'll rate it.
    since i always have issues once i finish a project and want to
    create a repo on github then upload it from VSCode terminal
    which i've used gitbash as my terminal priority.

  • @oggamer2244
    @oggamer2244 3 года назад +6

    The video game analogies were so easy to understand. You're amazing bro, this is why gamers rule.

  • @euanfisher6913
    @euanfisher6913 Год назад

    This was a huge help for a beginner like me, all the other 1hr+ videos were a bit off-putting. Your style is great, natural teacher!

  • @missmahem
    @missmahem 3 года назад +10

    Thank you daddy!
    But seriously I struggled with this the most. Downloading this video for future reference.

    • @2024comingforyou
      @2024comingforyou 3 года назад

      Hey ,i am not a native English speaker , why do kids nowadays started to use daddy in their vocabulary ? I mean is he your dad or what is the feeling behind calling him daddy?

    • @lukejames5467
      @lukejames5467 3 года назад +2

      @@2024comingforyou Hi Samarth, it's just a humourous way of referring to someone as a helpful figure who one can rely on for guidance. It's rather complimentary.

  • @MikeJones-dr8os
    @MikeJones-dr8os Год назад

    im not a coder, but Im running in to places where im directed to github more and more. I'm grateful for the way to explain this. It not boring, its very helpful and simple. thank you sir.

  • @KevinNaughtonJr
    @KevinNaughtonJr 3 года назад +6

    i finally git it

  • @gogamarra
    @gogamarra 8 месяцев назад

    Admittance to our common idiocy is the first step to becoming great. THANK YOU for this video dude! You're a frickin' rock star.

  • @anirbansarkar6306
    @anirbansarkar6306 3 года назад +7

    This approach of considering viewers as complete beginners is best 🙏 thanks Nick😇

  • @tomkuhl2945
    @tomkuhl2945 Год назад

    Thank you for this Nick. For a comparison, I just finished Google’s Git/GitHub course on Coursera. What took you twenty minutes to explain took them about 20 hours to teach when you include labs, maybe more. Google’s course is setup to be done over four weeks and the only thing they covered that you didn’t is rebasing, and like you said, that’s not important for beginners who most likely won’t even be creating branches.

  • @IIGeminiGemII
    @IIGeminiGemII Год назад +8

    0:46 So, uh...Dad - Can I get a SMALLish loan from you, PLEASE?? I REALLY need a new car...

  • @evanmurphy8531
    @evanmurphy8531 22 дня назад

    Dude, thank you. The moment I saw those eye bags, and I heard the underlying frustration of a dying soul, I knew I had found a kindred spirit and was in the right place. Bless you.

  • @ItsaPastaboy
    @ItsaPastaboy 8 месяцев назад +2

    Anytime anyone talks to me like I'm a 5 year old I immediately understand EVERYTHING

  • @theprocrastinator2232
    @theprocrastinator2232 7 месяцев назад

    My whole life has been IT/Servers/Networking... being challenged by many things, will be looking to make changes from and into my career (into programming) and starting with this video feels like its gonna be a great journey, thanks a lot Nick, much appreciated!!

  • @TonyStack
    @TonyStack 3 года назад +5

    Holy shit this is actually so good thanks nick you cleared up so much confusion! :D

  • @JoeySeyer
    @JoeySeyer Месяц назад

    Of all the videos I watch this is the best. Direct to the point approach, no unrelated stuff. Keep it up

  • @mwnkt
    @mwnkt 3 года назад +7

    I always wanted to learn like I'm a five year old;

  • @dmoreira99
    @dmoreira99 Год назад

    This is insane, I'm 1 month away from starting a course in programming that costed more then 7000€, i even sold my car for this and I have been loving everything about programming but i was so afraid of git and github because I couldn't get it, until I found this video.
    Thank you so much Nick! New family member right here.

    • @BinGanzLieb
      @BinGanzLieb Год назад +1

      you are joking, right?😮

  • @shrinken04
    @shrinken04 2 месяца назад +5

    So you're my missing dad?

    • @doomcrimson1680
      @doomcrimson1680 12 дней назад

      You wouldn't be missing him if you liked and subscribed just like he asked, right after you were born.

  • @colleenharrell168
    @colleenharrell168 2 месяца назад

    This was great. Watched it the first time to understand the overall idea. Watched it a second time to follow along with what the git text was showing as steps were being explained. Thank you.

  • @hozettes
    @hozettes 3 месяца назад

    Good job explaining this like I'm 5. I appreciate the brevity and disipline it takes to stay away from tangents that get complicated too quickly.

  • @asileayuba
    @asileayuba 2 месяца назад

    Thank you very much.
    This is the best tutorial on git I have seen.
    No one ever told me git is like a memory card for code.

  • @patrap4625
    @patrap4625 Год назад

    I remember coming here in my first month of learning,this all looked allien to me.But look at me ,after 7 months watching this ,it all came together finally.

  • @YvanNoah
    @YvanNoah Месяц назад

    Watched a lot of videos about this git topic, and it's the first time I understand it fully. Thanks kind soul!

  • @patrickmuldoon-w4k
    @patrickmuldoon-w4k 8 месяцев назад

    Hey Nick, great video. Great bc it's right to the point and short enough for my attention span. (and funny. you looked like you just rolled out of bed after a night of partying and remembered you were going to make a vid - yet pulled it off amazingly well!)
    been programming since the '90's but never used version control software bc it was too much bother to go thru the learning curve. I had real work to do. (microcontroller projects are pretty easy to maintain manually, anyway.)
    Tried GIT but got frustrated & gave up. Watched your vid and now very comfortable with enough of the basics to do what I need (at this point, anyway).
    I still have trouble with GIT GUI - it just seems a little to abstract to feel safe using it, so I just keep a post-it around with 4 of your command line GIT commands and that's all I need to setup GIT on a project and feel safe about it - All in about 15 seconds. The only other thing I needed to figure out was the git.ignore file. But that was pretty easy. Once it's setup, GIT GUI makes a bit more sense to me and I can explore it's features as needed.
    I think GIT is okay and useful, but the user interface has just never been done very well. Your focus on the very basics was very helpful. The other features can come with time and as they become needed and useful.

  • @tpennyhealth5861
    @tpennyhealth5861 12 дней назад

    A million thanks for this amazing video. I finally understand why the branches, pulls, commits, et al.

  • @korwolf64
    @korwolf64 10 месяцев назад

    Thank you so much! Years later and your video is still helping people like me!

  • @adolforosado
    @adolforosado 7 месяцев назад

    The capacity to teach is an important skill that many teachers today lack. You have it and you use it well. Thanks for the class. I learned something today in minutes that would've taken hours at least elsewhere.

  • @zilog1
    @zilog1 8 месяцев назад +2

    Fun facts, did you know that if you say anything related to hitting the like button or hitting the Subscribe button or subscribing to the channel, the platform scans the audio for your voice to say that, and then actually lights up the logo on my phone as soon as you say that

  • @VeryMuchBlessed
    @VeryMuchBlessed 9 месяцев назад

    Excellent video. Was getting discouraged watching how some of the other "how-to-Git" tech guys bombed on reaching us newbies. Thanks much.

  • @C_Crow
    @C_Crow 7 месяцев назад

    Thank you, they're teaching me this stuff at school, but they made it overly complicated. This video really helped me

  • @Braussie1
    @Braussie1 9 месяцев назад

    5 minutes into the video and I've got a sense that I'm not just absorbing knowledge, I am learning from you Nick, thank you and congrats mate 👍

  • @foxman482
    @foxman482 6 месяцев назад

    Thanks for the explanation, super helpful!! Also, makes me think that maybe this is how updates work on most OSs and programs. Somebody has a database with all the code that is being constantly maintained. When there's an update, your machine probably runs a script every so often that checks for changes in the code and then pulls them from the database. So cool honestly to understand this, thank you once again!

  • @thentoxd
    @thentoxd 7 месяцев назад +1

    This video is the perfect example of "Genius is making complex ideas simple"

  • @rodolfomagana2787
    @rodolfomagana2787 6 месяцев назад

    This is hands down the best git video tutorial. Talk to me like I'm a baby and an idiot, it works wonders 10/10

  • @iskrajackal9049
    @iskrajackal9049 7 месяцев назад

    Agree totally with your stated "assume no prior knowledge" approach, as other commentators have also said. Professional tutors should carry out diagnostics with new students, but on here that's not very do-able so you've hit on the best solution imo. Liked and subscribed as well as this comment. Thanks for posting too 👍

  • @biketrailsandwaggingtails
    @biketrailsandwaggingtails День назад

    I don't know how I got here cuz I was doomscrolling in imgur. I stayed when I heard "teach me like I'm a 5 year old." I hear versions of this phrase from management all the time. Anywho, this is a great vid tutorial; it's quick, relatable, and didn't have to skip 10 min into the video for the main point. Good job, dude.

  • @sovereignlivingsoul
    @sovereignlivingsoul Год назад

    i wish i had seen this 2 years ago when you made this video, best git video ever, hilarious presentation, exactly what i needed to get back on using git for my projects

  • @srujanbali1005
    @srujanbali1005 8 дней назад

    This way of explaining things was phenomenal. I did know this topic but now after the way he explained it. I can explain to others in a better way.
    Thanks

  • @mumoph
    @mumoph Год назад

    Instant subscription, very well explained and I actually got all of it despite being at the first step of my coding path. Excited to check your other videos too, much appreciated!

  • @dejahm1502
    @dejahm1502 Год назад

    omg man, you are the bestest. In all honesty, if you do this for other topics too, you're probably going to blow up on RUclips. This was hands down the best git video I've seen, and it takes skillzzzz.

  • @scribemike
    @scribemike 4 месяца назад

    Super, super helpful. Thanks. man. I'll add my vote for as much "For Dummies" type stuff as you're interested in making. You've got a talent for it.

  • @King-sd5vg
    @King-sd5vg 3 месяца назад

    When I was really young (like 12-13) I told a guy on the internet he sound very smart and how all of the things he said made no sense to me cuz I’m not as smart. And he said something really cool: “A person is smart if they can get their point across to anyone regardless of if the other person is smart or not.” All this to say it takes skill to help others understand and being able to demystify a lot of the “smart software dev” jargon that gets thrown around. That stuff genuinely scares people away from this stuff and sucks!

  • @lukeusername
    @lukeusername 6 месяцев назад

    Who here already knows Git but is looking for a good video to show beginners? This is perfect