Git and GitHub Tutorial for Beginners

Поделиться
HTML-код
  • Опубликовано: 6 июн 2024
  • In this step-by-step tutorial, learn how to use Git and GitHub for source control management (SCM). We start with Git. What is it? How you can get it running on your system, and how you can start working with it? Then we look at GitHub.com, a platform for hosting and collaborating on Git repositories. By the end of this video, you'll be well on your way to using Git and GitHub. If you'd like to follow along, I've included sample files down below.
    📚 RESOURCES
    - Sample files to follow along: 1drv.ms/u/s!AmxrofZZlZ-whOIll...
    - Official Git web site: www.git-scm.com/
    - Official GitHub.com web site: github.com/
    - Git and GitHub.com cheat sheet: education.github.com/git-chea...
    - Git Reference Manual: git-scm.com/docs
    - Git Overview Book: git-scm.com/book/en/v2
    - Sample ignore files: github.com/github/gitignore
    - Hyper.is Terminal: hyper.is/
    ⌚ TIMESTAMPS
    00:00 Introduction
    00:40 What is Git?
    02:11 Get Git
    03:13 Configure Git
    04:55 Get help
    05:59 Initialize repository
    07:19 Git status
    07:53 Track and untrack files
    09:18 Ignore files with .gitignore
    11:23 Track all files / add to staging
    12:07 Commit
    13:27 Change files and view differences
    16:00 Bypass staging and commit
    16:32 Delete / remove files
    17:13 Restore files
    17:55 Rename files
    18:56 View commit history with git log
    19:52 Amend commit
    20:48 View changes in commits
    22:08 Reset to previous commit
    22:30 Rebase git repository
    23:12 Branches
    27:19 Merge branches
    27:57 Delete branch
    28:30 Merge conflicts
    32:16 Typical Git flow
    32:37 Set up GitHub account
    33:37 Create new cloud repository
    35:09 Push local repo to GitHub
    37:29 Working with files
    38:25 Edit repo details
    38:44 Issues
    40:17 Pull requests
    43:05 Actions, Projects, Wiki, Security, Insights, Settings
    44:18 Releases
    45:00 Fetch and pull
    45:37 Wrap up
    🖥️ GIT COMMANDS CHEAT SHEET
    Set configuration values for your username and email
    git config --global user.name YOUR NAME
    git config --global user.email YOUR EMAIL
    Set default branch to main
    git config --global init.default branch main
    Get help on a command
    git help COMMAND
    git COMMAND -h
    Initialize a new git repository
    git init
    Clone a repository
    git clone REPOSITORY URL
    Add a file to the staging area
    git add FILE
    Add all file changes to the staging area
    git add --all
    git add -A
    git add .
    Check the unstaged changes
    git diff
    Commit the staged changes
    git commit -m "MESSAGE"
    Reset staging area to the last commit
    git reset
    Check the state of the working directory and the staging area
    git status
    Remove a file from the index and working directory
    git rm FILENAME
    Rename a file
    git mv (OLD NAME) (NEW NAME)
    List the commit history
    git log
    List all the local branches
    git branch
    Create a new branch
    git branch BRANCH NAME
    Rename the current branch
    git branch -m NEW BRANCH NAME
    Delete a branch
    git branch -d BRANCH NAME
    Switch to another branch
    git switch BRANCH NAME
    Merge specified branch into the current branch
    git merge BRANCH NAME
    Create a connection to a remote repository
    git remote add (NAME) (REPOSITORY URL)
    Push the committed changes to a remote directory
    git push (REMOTE) (BRANCH)
    Download the content from a remote repository
    git pull REMOTE
    📺 RELATED VIDEOS
    - Playlist with all my videos on Git and GitHub: • Git and GitHub
    - Python for Beginners Tutorial: • 👩‍💻 Python for Beginne...
    - SQL for Beginners Tutorial: • SQL Tutorial for Begin...
    📩 NEWSLETTER
    - Get the latest high-quality tutorial and tips and tricks videos emailed to your inbox each week: kevinstratvert.com/newsletter/
    🔽 CONNECT WITH ME
    - Official website: www.kevinstratvert.com
    - LinkedIn: / kevinstratvert
    - Discord: bit.ly/KevinStratvertDiscord
    - Twitter: / kevstrat
    - Facebook: / kevin-stratvert-101912...
    - TikTok: / kevinstratvert
    - Instagram: / kevinstratvert
    🎁 TOOLS AND DISCOUNTS
    ✅ 🎙️ Voicemod AI Voice Changer | 5% off | link.xsolla.com/KZBi89AY
    ✅ 🌐 Squarespace Websites | squarespace.syuh.net/XYaqYM
    ✅ 🔍 Grammarly | grammarly.go2cloud.org/SH3nL
    ✅ 🛍️ Shopify | shopify.pxf.io/XY9rPa
    ✅ 📋 Notion | affiliate.notion.so/rffva4tr71ax
    ✅ 🖼️ Figma | psxid.figma.com/lqjg97licpry
    ✅ 🤖 ElevenLabs Text-to-Speech | try.elevenlabs.io/taqepq60mptr
    🎒 MY COURSES
    - Go from Excel novice to data analysis ninja in just 2 hours: kevinstratvert.thinkific.com/
    🙏 REQUEST VIDEOS
    forms.gle/BDrTNUoxheEoMLGt5
    🔔 SUBSCRIBE ON RUclips
    ruclips.net/user/kevlers?...
    ⚖ DISCLOSURE
    Some links are affiliate links. Purchasing through these links gives me a small commission to support videos on this channel. The price to you is the same.
    #stratvert
  • НаукаНаука

Комментарии • 987

  • @chilloutlemur9979
    @chilloutlemur9979 3 месяца назад +97

    I usually don't comment on videos but this one has honnestly got to be one of the most helpful I have ever watched.
    Thank you very much!

  • @tolulopebolaji1582
    @tolulopebolaji1582 Год назад +330

    Kevin, this video just made my life easy! I was searching for quick tutorials on git and most of the ones I found were in the range of 2hours+.
    When I saw this one which was less than 50mins, I jumped on it and once I started watching I was glued to my screen till the end.
    Your teaching is epic! No BS! Straight to the points.
    You just won a Disciple.🙌

    • @nicomal
      @nicomal Год назад +5

      You couldn't be more right. I just finished a one hour tutorial and he didn't even talk about branches (but he does have a 5 hour paid course on his website). Also you can watch this at 1.5x or 1.25x comfortably (with pauses for taking notes or running the code)

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

      well said

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

      I agree! Great content !

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

      Thanks buddy. You hit the nail. No more to add. :)))))

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

      ​@@nicomalGG

  • @jeffreystine4638
    @jeffreystine4638 2 дня назад

    Three years later and still the most relevant and to the point git and github tutorial

  • @mattster6119
    @mattster6119 Год назад +347

    I have seen a good number of Git and GitHub tutorials on RUclips and elsewhere, and I can honestly say this one is by far THE BEST. Detailed and not overwhelming for a beginner. Thank you Kevin!

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

    As a newbie to Tech, this was so clear in what currently seems like a very confusing and unfamiliar zone. Thanks for the great tutorial!

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

    This video gave me the perfect start to github. I always love a Kevin Stratvert video. If I search for any topic on youtube and I find Kevin Stratvert I don't look at other videos I directly come here. Kevin Stratvert is one of my go to youtube channel. His voice is so calm as well

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

    I had to watch this video twice over the span of 2 1/2 days, and I took notes on absolutely every point! Thank you for this!

  • @chocodonuts3644
    @chocodonuts3644 4 месяца назад +14

    Thank you for providing this beginner-friendly tutorial, unlike many videos out there that are not accessible for beginners and assume prior knowledge. I appreciate the clarity and helpfulness of your content.

  • @is-gm6hg
    @is-gm6hg Год назад +47

    A true educational masterpiece! Thanks for your time and hard work

  • @rocco9t9
    @rocco9t9 Год назад +33

    The road to good to perfect is way longer than the road to average to good. The amount of hard work and time invested in this video (and every other videos of you as well) can be inferred from how you have focused on details. Look at the how perfectly he has integrated KCC in this video, provided link references for further learnings, listed out all the commands he has used in the description. That's a professional work + great teaching.

  • @EcnerYT
    @EcnerYT 6 месяцев назад +3

    Was trying to search for github tutorials and your tutorial was by far the best. Clear, simple and easy to understand. I appreciate your time doing this tutorial, you got a new sub!

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

    I have been searching for the most concise and accurate tutorial on git and GitHub. After watching this video, I got all I needed. Thank you, Kevin, keep up the good work.

  • @pmarc65
    @pmarc65 Год назад +7

    I just needed a quick guide to help me with my initial setup. At first I was like 46mns, man I hope what I need is at the beginning. The video is so thorough and well paced that not only I finished all 46mns but had to like and subscribed without seeing another video. This was amazingly well done. Kudos!

  • @IamWaliJan
    @IamWaliJan Год назад +14

    Person like me who always wanted to learn about git and github but had no knowledge at all and didn't know where to start from. This video just gave me a very good start and now i know what to do with all my Powershell scripts. Cheers Kevin!

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

    I have seen this 2 times already. This might be the best Git summary ever made. So incredibly useful. I am coding again after a break and I needed a refresher. This was absolutely perfect for that. I even learned a few new things. I would thumbs up 30 more times if I could.

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

    I went from zero to somewhat GIT-competent just from this short tutorial. Really good, I appreciate that it dives right into it. Thanks!

  • @glrbrasil
    @glrbrasil Год назад +5

    This is not only the best Git tutorial I've watched but one of the best tutorials for devs in general 👏

  • @ashokviswanathan920
    @ashokviswanathan920 6 месяцев назад +4

    Made a complex topic look so simple. Very well paced. Brought in all concepts and developer workflow with the same example. Brilliant. Thank you Kevin.

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

    I've been messing around with git for about 4 days, it was not going well. This video helped A TON. Thank you. I am very glad you started from the basics of getting git working first on my local computer.

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

    Always had a problem understanding what STAGING is, by you calling it a 'Holding Penn' you took all of my frustration away. You are a genius Kevin!

  • @djmrky75
    @djmrky75 Год назад +5

    Great video Kevin ... and this is coming from a senior developer who uses Git on a daily basis ... I can never get enough of Git videos. I always learn something new :-)

  • @heathicusmaximus8170
    @heathicusmaximus8170 Год назад +7

    This is an incredible video. It may be a little different sometimes (such as git checkout instead of git switch on older versions, possibly, ymmv), but overall it's a big help to anyone just starting their Gitventure.

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

    This is the only tutorial that I was able to follow through successfully each step till the end! I've watched a few other videos and all suffered the same fate, got stuck in a particular step that they showed and couldn't proceed. Thank you so much Kevin!

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

    Just pushed 3 projects that were giving me hassles for the past 3 weeks. Thank you for clear guide. You're the best!

  • @yoip1234
    @yoip1234 Год назад +28

    Thank you, Kevin, for this wonderful tutorial. It was very clear and concise. You have covered the topics in such a flow that everything seemed very easy to understand. Thank you, once again. Great work!

  • @josephkatongole4659
    @josephkatongole4659 2 месяца назад +12

    I learning how to use Git and GitHub, I feel this is a one stop tutorial. I am just watching it over and over

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

    You don't need to remind any one to subcribe to your channel, every one will love to subscribe 10 times plus after watching your videos, you are a great /born teacher. Thank you so much for sharing for free

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

    This is the best Git & GitHub tutorial available and it's not even close! The fact that you didn't use any code editor magically demystified Git for me. Subscribed!

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

    Kevin, as usual you do a great job of putting these videos together. I have tried to watch several other git videos but this one is the clear winner.

  • @zahid_9217
    @zahid_9217 Год назад +3

    Dear Kevin I am doing Masters in Computer applications. I have been watching your videos for a long time and I really like videos. couple of days I decided to learn git and GitHub after watched some videos on RUclips I got so board I was think that I wish kevin should have a video on git ang Github finally I today I saw the video on your channel I am so happy to watch it
    Thnank you so much

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

    first time i watched git and git hub tutorial completly in one go.. best tutorial ..

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

    I just want to let you know every time I search about anything, you don't know How happy I am, just to see your face, or your uploading a video about the things I want to learn. Keep up where you are the best.

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

    Thanks a billion for this tutorial. You cut through the chase, went straight to the point and made it so easy to understand

  • @blurryface616
    @blurryface616 9 месяцев назад +10

    Hands down one of the best channels on RUclips. So detailed yet so simple to follow along. Thanks a lot Kevin, you are great a teacher.

  • @sevanthishekar4379
    @sevanthishekar4379 6 дней назад +2

    I can't even begin to explain how grateful I am to you for this amazing video. You made things look so easy. Thank you for all your time and hard work.

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

    i'm just halfway through the video but i'd like to thank you. you'll never know how grateful i am to you.

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

    Thanks, Kevin. In my search for a tutorial that is both concise and short, your video really fits the bill.

  • @microdavid7098
    @microdavid7098 Год назад +7

    it's hard to not enjoy this topic when your enthusiasm emanates through the video. Thanks for the tutorial. Thanks to you, I know how to use shotcut, balabolka and now git. I may have missed other software but you really know how to make tutorials

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

    In 5 years of trying to watch a video to learn about github etc, this one is the last one standing. Well done haha

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

    i watched many videos on youtube but none of them make me understand git and Github i am exhausted but then i played your video and boom every thing is explained well and clear thanks alot❤

  • @mrprofomedia
    @mrprofomedia Месяц назад +4

    the deeper get into the video, the more I appreciate.

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

    The best tutorial on git and github. So much information in so less time, yet so understandable. Subbed and hell I'm clicking all those ads for you!!

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

    Not even finished watching but every time I have a question Kevin answers it right away. This is great, kudos!

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

    I am a noob an started programming like a few weeks ago. I have made steady progress and made a few projects but I heard is good to show your contributions in GitHub. I didn't know what Git hub or for that matter Git were. This video has been excellent to help me understand how to work with git, how projects are approached in real life and how to combine this in git hub. Without knowing it I have discovered a tool I didn't know I needed. Before this I had copies and copies of projects at different stages in case I had to go back, which is essentially the function Git takes care of. Idk why I think is so cool when you switch from a branch where you are doing new stuff back to the main branch and in the file viewer the files change accordingly.

  • @miransh
    @miransh Год назад +7

    Great teaching Kevin, I really appreciate your dedication in helping us learn - no one explains it like you do ! Keep it up ....

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

    Excellent tutorial, Kevin! I've seen other tutorials on Git before, and I find this quite clear and useful! Thanks a lot!

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

    One of the best Git Tutorial I saw on RUclips. No hand waving unorthodox layout and OS like the most popular video that make it impossible to follow along.

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

    Omg, the best git and GitHub tutorial...you saved form confusion and saved me time too. The delivery was very good. Thanks man.

  • @AlexTheAnalyst
    @AlexTheAnalyst Год назад +41

    Absolutely fantastic! Huge fan of Git and GitHub. This kind of content is needed.

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

    This was a really comprehensive overview mate! Really impressive. I not only now know how to install, edit, construct repositories correctly and efficiently in the Git style, but I also now know to connect to GitHub. Most importantly of all, I now know why I'd bother doing any of it at all and how much of a game changer it is for my projects in general and my workflow in particular. I can't remember how the algorithm pushed me along to your video (I think it was a general search for System Analysis and Design re: Uni project) but I'm so glad it did. Liked and subscribed 😊

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

    OMG! I have watched so many videos but nothing like this. Thank you so much,
    This video is just pure gold, straigth to the point.

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

    Thank you, I kept on delaying more about Git as I found the content of other videos and the process of using GIT quite daunting. You made it look so easy I am not wondering what I was afraid of. Great video!

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

    Great tutorial on the basics of Github, very straight forward. Pace and production quality were spot on.

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

    Thanks Kevin for such a neat and organized tutorial. Thanks for for everything I learnt from you and will learn in future.

  • @md.mubarratbinislam3597
    @md.mubarratbinislam3597 Год назад +2

    Best git tutorial ever. This is the first time I understand git easily. Thanks.

  • @user-gc1wr2rl9x
    @user-gc1wr2rl9x 7 месяцев назад

    This took me two hours to complete but it made my understanding of Git and GitHub so so muc better. Thank you so much for the sample example.

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

    Fantastic video Kevin, it is designed very systematically to understand the entire flow of GIT and GITHUB perfectly ...Thanks for the video

  • @daviddare2938
    @daviddare2938 Год назад +5

    you explained everything so easily! You are a very good teacher.

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

    I really like people who are good communicators and teachers, some of us pay attention to teaching style and detail and the ability of the teacher to communicate the information, you have this ability, please keep going, you will help alot of us! Thanks for your efforts!

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

    My god this tutorial is awesome. Ran through a whole project in no time. Great stuff.

  • @pantuabafras9899
    @pantuabafras9899 Год назад +7

    excellent tutorial Kevin! you are unique in your teaching styles. I have watched several videos on this topic, but l always end up confused, thank you for great piece.

  • @stevenlomon
    @stevenlomon 3 месяца назад +18

    9:54 If anyone had the same problem as I did where I couldn't change the file extension, click View -> Show -> File name extensions :) Edit: just finished the video. Absolutely fantastic!! You taught a lot of the things they didn't teach us in our Python classes, thank you!

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

      You are a real one for that! I was spending like 30 mins remaking the file trying to understand why it was not working!

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

      thanks man

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

      tysmmmmmmmmmmm broooo!!!!!!

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

      i cant find a "show" in my view tab. you know what i should do?

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

      In your view tab, there should be a show tab which contains hidden items , navigation panel, file extensions options etc bro. @@Jameshowardadventures

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

    I’m a complete beginner and this tutorial is so good. After watching so many videos and I got stuck, this helped out! Thank you very much

  • @bob130
    @bob130 11 месяцев назад +1

    Kevin, you are the best at simplifying this content for new users, I appreciate it so much!

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

    This man is a great Teacher. He can simplify concepts a lot, just like CoreySchafer, a great Python programming instructor. Weldone sir

  • @Sera_Vaz
    @Sera_Vaz Год назад +3

    Kevin, I didn't even know about these things until now! You are a really good teacher and I am so glad you decided to quit Microsoft and become a full time RUclipsr because you have been making technology a lot simpler for people like us!

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

    For some reason a small part of me thinks that Steven Stifler is teaching me this, and I love it.
    This tutorial is great. I was so effing frustrated today up until now. Thank you so much for making this.

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

    Man you are so gifted in teaching. This is what I lack in many youtubers. Thank you so much for this amazing video. Keep rolling!

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

    Thanks for another excellent educational video. Clear, well laid out and easy to follow along.

  • @jb_457
    @jb_457 Год назад +26

    A really well thought out , easy to follow and comprehensive tutorial. Thank you.

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

    I have seen lots of Git and GitHub tutorial on RUclips but this is the excellent and very helpful for me (beginners) Thank you ❤❤

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

    Thanks! I am just getting into GIT (old-timer tech writer) and this really helped with a basic understanding -- its not quite as scary as I thought it might be!

  • @carrieprice78
    @carrieprice78 Год назад +32

    You’re incredible and such a great teacher!

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

      Thank you! 😃

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

      @@KevinStratvert too many clicks and stuff to remember. Computers are supposed to be getting smarter,.

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

      Mans living in an alternate reality

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

    Kevin is really a great teacher.

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

    Ok I thought these comments might've just been overhyping the video but this is actually the best, most beginner-friendly tutorial I have ever seen to git and github. Thank you!

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

    This is a guide I regularly refer to for working with git and Github. Appreciate the simplicity!

  • @ssrinivas42
    @ssrinivas42 Год назад +7

    Hey Kevin you know what, I was just thinking this morning to storing my scripts in Git and thought to see some videos on Git to explore in detail. But here you are, this might be the butterfly effect, my thought here reached to you and you've uploaded what I wanted. Amazing. . . !!!! BTW, thanks a lot, loving your content. Keep rocking.

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

      also me github making roblox scripts GO BRRRRRRRR

  • @donaldnwokoma506
    @donaldnwokoma506 Год назад +3

    thanks Kevin!!! I just fetched and merged knowledge from this video

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

    Thank you, Kevin! After watching your video, I have been able to understand the first chapters of the Pro Git book. I really appreciate the clear and didactic way in which you share your knowledge. Excellent video!!!

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

    If i am to rename this video, it's gonna be life made easy....one of the best i have seen so far! Many thanks Kevin.

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

    Great tutorial, hands down the best one I've seen so far!
    Heads up though! For some users, including myself, the command for renaming the default init branch wasn't working.
    Correct bash command was:
    git config --global init.defaultBranch main
    very subtle distinction but it worked for me!

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

      @prism_schism I tried both and neither worked for me. @KevinStratvert your video is EXTREMELY helpful otherwise - do you have any other suggestions?

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

      @melissakinney7896 In newer versions of git when installing it on your machine you can specify the name of the default branch to be main. So if nothing helps, I'd recommend just reinstalling git and specify that.

  • @fauxflights77
    @fauxflights77 11 месяцев назад +5

    For users having an issues with the master/main change sticking, you may need to run "git config --global init.defaultBranch main" rather than "git config --global init.default main"

  • @TimothySeymour-jj6db
    @TimothySeymour-jj6db 5 месяцев назад +1

    You're to be commended for your efforts, [!] I've learned so much from you, in just the first video alone, "it's amazing!" Thank you so, very much, for Your help and taking the time to bless mankind with your Teaching!!! Your easy to learn from and as I see it a plethora of information. Teachers need to be appreciated as much as we as a whole can do!

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

    Deeply appreciate the hard work you put into this....Very exhaustive, thorough and apt. The best you got here

  • @lukemoon4466
    @lukemoon4466 Год назад +3

    If anyone is having issues with the .gitignore part............avoid saving the file as a text file (it needs to be saved as a file with no extension through which ever editor you use)............using Notepad didn't work for me (even when trying to resave the file by encapsulating the file name within double quotes).........I basically had to open a new file in Notepad++ (do not create the file within File Explorer as it will likely use Notepad by default)...........I then saved the file with the filename between quotes after creating the new file through my Notepad++ editor..............and it worked.

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

      Thanks so much, this solved it.

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

      Thank you!! Worked for me as well

  • @dollarblitz
    @dollarblitz 4 месяца назад +42

    I play classical music for my chickens

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

      When you say you're chickens, do you mean pet chickens that live with you? Or chickens that you use to get eggs and eventually kill?

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

      What is the instrument you play it for your chickens

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

    Glad I found your video. It gave me a solid basis to start with for understanding Git / Git Bash and GitHub . All without getting lost in too much details and also a video not lasting 8 hours or more 👍

  • @jjguillermo-dev
    @jjguillermo-dev 23 дня назад +1

    I didn't understand Git and GitHub well until I found this tutorial. Thanks, Kevin!

  • @mrcontrol111
    @mrcontrol111 Год назад +38

    I need to learn more about database because the country where i live they need more people who are graduated IT Course and knows well about DATABASE

    • @nitrotech9701
      @nitrotech9701 Год назад +3

      Please what country if I may ask. I have a background in IT. Can we link up.

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

      M

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

      Emil..
      Om att.
      Mm
      M
      I'll keep.

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

      @@nitrotech9701 Dubai - UAE 🇦🇪

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

      How your level in 8 Moonth?

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

    This is NOT for beginners, you talk like we're supposed to know every concept you say, which is not the case for most people getting started in programming world. And I'm saying this as an experienced programmer, not a noob.

  • @deepaksingh-ranger9225
    @deepaksingh-ranger9225 9 дней назад

    I have to say this is one of the best explanations I have watched on using Git and git hub. Thanks Kevin. Very useful

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

    I agree 1000% !! I have watched many tutorials, but this one was EXCEPTIONAL ! Keeping it simple, clear and with great examples. I sure hope there are more coming. THANKS

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

    This was an excellent tutorial. It finally demystified Git and Github for me, and took me through a project, so now I have some experience, and it was quick and to the point. Thanks so much.

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

    This is the most complete and easy to catch up GIT guide I have encountered on YT! Thanks man!

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

    Thanks for the GIT and related GITHUB Tutorial. I have used the components but not had a full knowledge what where everything eventually ends. The information was very comprehensive and enlightening for me

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

    Thank you so much for this tutorial. I'm an absolute beginner and honestly this video has made me understand the fundamentals of git and github. i'm so grateful

  • @pivand
    @pivand 12 часов назад

    Very useful tutorial for a beginner like myself. I was not using hit because I felt like it only added a layer of complexity to my small projects, that I had to keep in mind. Now it is clearer for me why and when to use git!

  • @BluePulseFlyer
    @BluePulseFlyer 11 месяцев назад +1

    The 'for dummies' break down of everything is very much appreciated! I'm a student majoring in software engineering and aside from learning basic coding in a hand full of languages I feel like i haven't learned much on "how to be a software engineer" seeing the breakdown of the basics of how Git and GitHub are utilized helped me get a better picture.
    Is there a part two to this video discussing more advanced ways of using Git / Github? or a video from another channel that you would recommend? Thanks for the awesome video and Thanks in advance for the continued help!

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

    Thanks. I wish some boot camps made their tutorials as easy as yours. It was quite easy to follow what you are demonstrating. You have taught me all I need to understand about Git and Github today and even stuff I will be using in the near future. Well done.

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

    In short time, you explained important features of git and github..the best tutorial ...thank you Kevin.