I would strongly advise to watch the whole video because it's a great source of information, but for those reviewing the content or looking for a specific concept, here's an overview: 0:00 - Introduction 1:31 - Distributed vs Central Version Control 3:17 - Installing Git 3:39 - First Time Setup 6:36 - Getting Started (Local repository) 10:41 - Git File Control 14:55 - Getting Started (Remote repository) 20:37 - Branching 27:38 - Faster Example 29:41 - Conclusion
With " learn X in Y minutes" kind of tutorials getting millions of views these days, its great to see this no-nonsense, content-first channel. Good job! Keep it up!
This was probably one of the most perfect tutorials of any technical subject that I have ever seen. So many tutorials make assumptions that they don't realise they are making and they skip things. This was perfect.
@@swaraagsistla8641 he probably meant what he said. There is still a lot to learn and after watching the video I even think that 1% ain't that little...
There are "before and after" Coreys tutorials. Before one may be confused or stuck with a problem. After things make sense again and the problems get solutions. Just simply the best tutorials around.
I know it's been several years since these Git videos came out but I wanted to thank you for them, as they have made a big impact on my comfort level with Git for day-to-day development work in my team. I'm not afraid of Git anymore and I can use it with confidence. Great examples and your clear speaking voice made the material accessible for me. Thanks a bunch, Corey!!
You're very thorough in your tutorials! Some of the other TH-cam tutors ignore certain crucial aspects in their explanations and leave viewers hanging, seemingly forgetting that they're mostly dealing with beginners.
Best I have seen so far about git. Short and clean samples. Simultaneously I followed your steps and did on my own, and that is what I recommend to understand how that works. Don't only watch, instead watch and try on your own. Thank you Corey!
I'm from The Odin Project starting my programming learning journey, i speak spanish and i could completely understand all you said also could grasp every idea in every step. Thank you very much for this amazing video
i have watched a 1.5 hrs lecture on Git from my university and i didn't get half of the information i got here and the few things the prof actually told us were explained in the most complicated and unnecessarily exhaustive way possible. thanks for your work man, it's truly appreciated.
Thanks again Corey! This video was very helpful! There was a lot of information thrown out in this video. I was feeling overwhelmed at first, but after taking a break and giving my mind time to rest and absorb what I saw, I rewatched the video again and this time everything clicked! So for the viewers that watch this video, I would recommend watch it once, then take a break and rewatch it until it sinks in. This is a very valuable and powerful lesson.
Odin project student here... I've watched this video 5 times over. Not because it's difficult to understand, but because it's so well explained and straight to the point; a lot to take in all at once too. Well done and thank you for this resource!
I went from 0 to 10 on git after watching this video. Thank you so much for teaching this so well, without using ambiguous terms. This is my first time using git and your video helped me so much.
I rarely, RARELY, comment on videos; even ones I enjoy. But this tutorial has made the git workflow so easy to understand that I have to let Corey know how much I appreciate him putting this together. Thanks again!
Best Video in simplified form. Please keep posting simple but powerful videos. This video shows that no. of views doesn't define the goodness of a video.
Great Video. I'm studying a paper on Software Engineering and Design and this video on GIT was more educational and of higher quality than 2 x 1 hour university lectures on the same topic. Thanks
I would be thankful to you , I entered the programming world by watching your video and I am improving day by day ,I am very much thankful to you.I have recommended your video to all my friends and they are enjoying your content.Thanks Corey
By far, the best tutorial on GIT. It's been months I've been trying to wrap my head around commands. This is the perfect tutorial to get anyone started.
No one before had explained me in a so clear and straightforward way what git is and how it works. Many thanks Corey, you're a great teacher. Your videos on Python have also been very useful for me, and I just hope you add some C++ tutorials too :) Thanks again!
The Odin Project brought me here. I absolutely loved this video and will recommend to anyone overwhelmed by the idea of using git (especially using command line). I've avoided learning git for so long because I didn't realize how efficient it actually is. This video explained it extremely well and I feel much better about git. I'm excited to start using it for real. Thank you Corey!
I have to say, your videos are so useful and you have such a good way of explaining and teaching different concepts, subjects and how to's. I have watched and used quite a few of your videos, and found them so helpful and educational. This channel is such a great resource for anyone trying learn more about any of the subjects you have videos about. Thank you for being such an educator and lifesaver!
Without question, the very best explanation and demo of command-line git that I've ever seen. I know that there are a lot more areas that are not covered here but, for a guy that's been in tech for over 20 years and is just learning how git works, this is fantastic! It's funny that everyone assumes that you know all about git and github. But if you don't, it can be confusing and exasperating. This tutorial is great!
I nominate this video for The-Most-Important-Video-on-the-Internet ... award? No - not award - just staus ... like in status-quo. This is the best-concentrated piece of knowledge I've seen on the subject matter for the past several years. And even if it could be divided into several parts (for the newcomers mostly), it's still introductory enough for any person who uses a computer and in some sense works with files (documents-in-motion) ...
So I've taken some notes for the last "fast example" of the video (the one that concludes all the commands). So, here is the workflow you will repeat forever from now on: git config --global user.name git config --global user.email git clone git branch my_new_branch git checkout my_new_branch (make changes to the code) git status git commit -m "Add @function in file7" git push -u origin my_new_branch (wait for unit tests to complete) (if all unit tests pass, then do these) git checkout master git pull origin master git merge my_new_branch git push origin master (now time to delete my_new_branch) git branch -d my_new_branch git branch -a git push origin --delete my_new_branch
When I was looking for some tutorials on Git I didn't have to think twice before opening this video. That's where the quality of your tutorials are! Love your tuts!
I have tons of knowledge when it comes to SVN, so how you presented this video to help me transition was beautiful. Well done, great presentation don't change a thing.
As someone just entering the field of data engineering and version control being so new to me, this was, hands down the best video to explain the concepts. I tried reading some documentation online and watching other videos. But this was the easiest to digest. Thank you so much for putting this together. God bless!
Hello Corey, your tutorial is great! I have asked friends how to work with git and taken other tutorials, but this is by far the best I took! Thanks a lot.
I rarely leave comments on any youtube videos but this one really deserves a comment : THIS IS THE MOST AMAZING/USEFUL/WELL EXPLAINED TUTORIAL OF GIT!!! I had my notebook with me while he was explaining and I started the video having no idea of how to work with git and now I feel like it is way easier than I thought when I started using the command line just knowing the commands by heart and not understanding anything. BIG BIG THANKS !!
Wow. This is so abstract from the perspective of a rookie, and yet, so clear. Why? Corey uses the simplest possible examples at every step, has code ready to change, makes the simplest possible changes, explains everything he is doing, often before he does it and again after he does it. He does not race through everything, hoping to show us how fast or easy some system is or how clever he is. It's so clear, I was able to deduce some properties of git that he didn't even tackle in his exposition. I absolutely agree with Adrian Wilk: Go through the entire video even if you plan to work with git only locally. No matter what you're doing, take the time to study every video CS makes that has any bearing on your goals. NOBODY DOES IT BETTER. Theres no FOO or BAR here. Instead he names the remote repository "origin" to clarify git's checkout and push commands, showing file changes at every step with appropriate commands. Most of the explanatory video on the web is too basic for me now. Why? BECAUSE OF COREY SHAFER. Good morning Corey! I sure could use a video on using slightly advanced query objects in Django to work with related tables. I'm raising your monthly stipend 50%.
Among the other TH-cam videos in coding (series tutorials in particular), I found your content more engaging yet straight to the point. Your voice is also soothing and easy to follow; Like when I was watching your Python tutorials, I can anticipate what you "will do" next and then makes me feel like I actually "get it". That is a form of talent - the kind of empathy a great teacher has!
i've been looking all over the internet for a great git command line tutorial and it was nowhere to be found on the git website or its linked videos, but i most certainly did find it here. THANKYOU. BEST, EASIEST TO UNDERSTAND GIT CL TUTORIAL ON THE WEB. Why is it so hard to find people who explain programming in regular words like you do? This is so useful.
I want to learn using github by terminal for long time but I can't find a tutorial clear like this one. I follow it STEP BY STEP and practice few time with my github. Right now, I am sure to master it. Thank you so much!
There are many tutorials out there but it's hard to find one that's to the point, relevant and easy to understand without too many frills and gimmicks. Well done.
Excellent Tutorial. Super helpful to start the student with remote then clone it, and then watch how mods on cloned repo interact with the remote. Most teachers make huge assumptions and leave the student in the dust within five minutes. You don't gloss over stuff when you teach. Thanks very much!
Odin Project brought me here. Even 5 years this video is still relevant and game changer for git noobs like me. Thanks for sharing your expertise. Ps: What's the service you are using to show slides? Is it selfhosted?
I decided to learn a bit more than the most basic operations in Git. And I am so glad that you covered this topic, as you never let me down. Thank you for doing these tutorials.
this comment is for those who are looking for best content available in youtube for coding: only few channels are here who really have great content one is corey schafer and other is sentdex both of you guys are awesome. You both have taught me alot. Thanks, sir.
Got to say, you are a natural teacher. Very nice explanations, good pace, engaging and easy to follow. One of the best tutorials available on youtube!! Thank you so much :)
thank you! two hours ago I was desparate about one project on my work! but after your tutorial I was able to properly commit everything that I wanted! Bravo!
I was seeing which video should i watch to know about GIT, Fortunately i landed here. I only downloaded first video, after watching 1st one, my soul forced me to download and watch all videos. Today is 31/10/2020. Thank you sir.
@@marymad4203 me too, i got so lost, i cant seem to find the .gitignore or after touching it, also hard to follow the steps without actually doing it as he speaks
@@andikanakpan8436 I know, it happens sometimes, is normal. You can focus on git init, clone, status, add and commit for now, just to familiarize with git workflow. And the others commands you can learn after you learn these above. I hope it helps you :)
Super video. There's so much, I had to watch it numerous times, stopping and starting while taking notes. The most useful thing is that you show the sequence of commands needed to perform a function.
I wasn't getting it at first but watched this video 2nd and then the 3rd time after practicing and failing a bunch of times and now it has started to make sense. thank you.
Thanks to you, I am now on GitHub successfully. Took many times through the video, but no other video made the process clear enough for me tackle it. I'm starting to teach the nieces a few things in electronics and microprocessors. This is going to help greatly on the programming end. Much appreciated.
Sorry you feel this way! Learning this stuff, as with anything you're learning for the first time, can be frustrating. Hope me offering some advice isn't seen as presumptuous on my part. In the wild, git is used primarily on teams collaborating on code, but you can use it on your own personal projects to keep track of changes. If I were you, I'd try to start a small project - just something with a few lines of code - and then head over to GitHub. From there, create an account, set up a repository, and commit your code to that repository. Of course, you need to initialize your local repository and "connect" it to the remote one you've set up on GitHub as well. This tutorial gives you most of the tools to do that, but you'll also probably need to Google around a bit.
I would strongly advise to watch the whole video because it's a great source of information, but for those reviewing the content or looking for a specific concept, here's an overview:
0:00 - Introduction
1:31 - Distributed vs Central Version Control
3:17 - Installing Git
3:39 - First Time Setup
6:36 - Getting Started (Local repository)
10:41 - Git File Control
14:55 - Getting Started (Remote repository)
20:37 - Branching
27:38 - Faster Example
29:41 - Conclusion
thanks for the timestamp!
Thank you, Adrian.
Thank you!
Hi, how do u add those time-stamp links to your commit? Any doc?
type it like usual@@tetelim4428
I watched this on May 12, 2020, and it's still the best video to learn how Git works.
With " learn X in Y minutes" kind of tutorials getting millions of views these days, its great to see this no-nonsense, content-first channel. Good job! Keep it up!
This was probably one of the most perfect tutorials of any technical subject that I have ever seen. So many tutorials make assumptions that they don't realise they are making and they skip things. This was perfect.
For beginners, this is the best git tutorial you’ll find in TH-cam. Period.
Whose's here in 2024?? Corey Schafer is the best teacher of all timee😇😇
Went into this a complete noob and came out 99% noob. Excellent video!!
magnus engø -(99% noob) **
I feel the same! still a lot to learn but more hopeful
@@swaraagsistla8641 he probably meant what he said. There is still a lot to learn and after watching the video I even think that 1% ain't that little...
4 years later and this is still the best youtube video on the topic. Thank you
Been viewing a lot of Git Tutorials lately, but this one is the best by far! Highly recommend for complete beginners!
There are "before and after" Coreys tutorials.
Before one may be confused or stuck with a problem.
After things make sense again and the problems get solutions.
Just simply the best tutorials around.
3+ years later this video is still super helpful. Thank you very much!
This guy is a legend, a video that is 8 years old is the the best at clarifying git and GitHub
I know it's been several years since these Git videos came out but I wanted to thank you for them, as they have made a big impact on my comfort level with Git for day-to-day development work in my team. I'm not afraid of Git anymore and I can use it with confidence. Great examples and your clear speaking voice made the material accessible for me. Thanks a bunch, Corey!!
Corey Schafer is best at choosing what is essential for viewer, i think this is the best content
Best tutorial I've seen so far and I've been poking around for them for days now. Thank you Corey.
You're welcome. Glad you enjoyed it!
Great
You're very thorough in your tutorials! Some of the other TH-cam tutors ignore certain crucial aspects in their explanations and leave viewers hanging, seemingly forgetting that they're mostly dealing with beginners.
Best I have seen so far about git. Short and clean samples. Simultaneously I followed your steps and did on my own, and that is what I recommend to understand how that works. Don't only watch, instead watch and try on your own. Thank you Corey!
I'm from The Odin Project starting my programming learning journey, i speak spanish and i could completely understand all you said also could grasp every idea in every step. Thank you very much for this amazing video
The 30 minutes video has build my confidence in working with Git. Thanks alot for this
i have watched a 1.5 hrs lecture on Git from my university and i didn't get half of the information i got here and the few things the prof actually told us were explained in the most complicated and unnecessarily exhaustive way possible. thanks for your work man, it's truly appreciated.
Thanks again Corey! This video was very helpful! There was a lot of information thrown out in this video. I was feeling overwhelmed at first, but after taking a break and giving my mind time to rest and absorb what I saw, I rewatched the video again and this time everything clicked! So for the viewers that watch this video, I would recommend watch it once, then take a break and rewatch it until it sinks in. This is a very valuable and powerful lesson.
Odin project student here... I've watched this video 5 times over. Not because it's difficult to understand, but because it's so well explained and straight to the point; a lot to take in all at once too.
Well done and thank you for this resource!
It has become a habit of mine to watch Corey's video in free time instead of Netflix.
I went from 0 to 10 on git after watching this video. Thank you so much for teaching this so well, without using ambiguous terms. This is my first time using git and your video helped me so much.
GIt on fast track. Watching your videos == reading 2 to 3 books. Thank you Corey.
I rarely, RARELY, comment on videos; even ones I enjoy. But this tutorial has made the git workflow so easy to understand that I have to let Corey know how much I appreciate him putting this together. Thanks again!
Best Video in simplified form. Please keep posting simple but powerful videos. This video shows that no. of views doesn't define the goodness of a video.
+binoy deka Thank you for the kind words!
You know what ? whenever i want to learn something in shortest time but highest quality, i search it in your channel !
Great Video. I'm studying a paper on Software Engineering and Design and this video on GIT was more educational and of higher quality than 2 x 1 hour university lectures on the same topic. Thanks
Spent 3 months trying to get git installed properly and ended up giving up. Watched this 30 minute tutorial and now it is set up properly. Who knew?
I spend the last two days watching git tutorials. But you are THE BEST.
This is the Best tutorial I've seen so far on Git.... Thank you !
exactly, i have seen tons of videos on youtube but none of them explained as good as this channel
I would be thankful to you , I entered the programming world by watching your video and I am improving day by day ,I am very much thankful to you.I have recommended your video to all my friends and they are enjoying your content.Thanks Corey
Best Git tutorial video I've seen. Thanks!
By far, the best tutorial on GIT. It's been months I've been trying to wrap my head around commands. This is the perfect tutorial to get anyone started.
No one before had explained me in a so clear and straightforward way what git is and how it works. Many thanks Corey, you're a great teacher. Your videos on Python have also been very useful for me, and I just hope you add some C++ tutorials too :) Thanks again!
The Odin Project brought me here.
I absolutely loved this video and will recommend to anyone overwhelmed by the idea of using git (especially using command line). I've avoided learning git for so long because I didn't realize how efficient it actually is. This video explained it extremely well and I feel much better about git. I'm excited to start using it for real. Thank you Corey!
The Odin Project brought me here :)
Yep, its been an awesome website so far.
samee :D hows your journey with TOP been?
@@chan7191 I'm using freecodecamp at the moment, Ill carry on with the Odin project, when I have a better foot into things.
Andrew De Lange thats great! Have fun :)
@@chan7191 AWESOME
Best video in youtube to get a good understanding of all the necessary GIT commands. Clear and crisp explanation, Great job.
I have to say, your videos are so useful and you have such a good way of explaining and teaching different concepts, subjects and how to's. I have watched and used quite a few of your videos, and found them so helpful and educational. This channel is such a great resource for anyone trying learn more about any of the subjects you have videos about. Thank you for being such an educator and lifesaver!
Without question, the very best explanation and demo of command-line git that I've ever seen. I know that there are a lot more areas that are not covered here but, for a guy that's been in tech for over 20 years and is just learning how git works, this is fantastic! It's funny that everyone assumes that you know all about git and github. But if you don't, it can be confusing and exasperating. This tutorial is great!
I usually don't comment but THIS IS JUST AMAZINGGGGGGGGGGGGGGGGGG Tutorial. THANKS A LOT....................
I nominate this video for The-Most-Important-Video-on-the-Internet ... award? No - not award - just staus ... like in status-quo. This is the best-concentrated piece of knowledge I've seen on the subject matter for the past several years. And even if it could be divided into several parts (for the newcomers mostly), it's still introductory enough for any person who uses a computer and in some sense works with files (documents-in-motion) ...
So I've taken some notes for the last "fast example" of the video (the one that concludes all the commands). So, here is the workflow you will repeat forever from now on:
git config --global user.name
git config --global user.email
git clone
git branch my_new_branch
git checkout my_new_branch
(make changes to the code)
git status
git commit -m "Add @function in file7"
git push -u origin my_new_branch
(wait for unit tests to complete)
(if all unit tests pass, then do these)
git checkout master
git pull origin master
git merge my_new_branch
git push origin master
(now time to delete my_new_branch)
git branch -d my_new_branch
git branch -a
git push origin --delete my_new_branch
I strongly recommend this tutorial for everybody who is going to use git, but did not use it before.
This video completely saved me for the git section of my class. You are the man Corey. Keep em coming.
When I was looking for some tutorials on Git I didn't have to think twice before opening this video. That's where the quality of your tutorials are! Love your tuts!
I have tons of knowledge when it comes to SVN, so how you presented this video to help me transition was beautiful. Well done, great presentation don't change a thing.
Still very relevant and the best tutorial of Git 9 years later... Thank you Corey!
If our tutor shows us this in class instead of trying to explain it himself this would be so much easier
As someone just entering the field of data engineering and version control being so new to me, this was, hands down the best video to explain the concepts. I tried reading some documentation online and watching other videos. But this was the easiest to digest. Thank you so much for putting this together. God bless!
Best git tutorial on the Internet
is it still up to date? thanks.
Mr.Corey Schafer the way you teach and your voice always motivates me to learn python and keep moving. Thank you very much for all your content
Hello Corey, your tutorial is great! I have asked friends how to work with git and taken other tutorials, but this is by far the best I took! Thanks a lot.
Again, 30 minutes of my life that have not been wasted. Keep up your very good content. Thumbs up.
Best git intro I've seen!
Thanks!
I rarely leave comments on any youtube videos but this one really deserves a comment :
THIS IS THE MOST AMAZING/USEFUL/WELL EXPLAINED TUTORIAL OF GIT!!!
I had my notebook with me while he was explaining and I started the video having no idea of how to work with git and now I feel like it is way easier than I thought when I started using the command line just knowing the commands by heart and not understanding anything.
BIG BIG THANKS !!
Wow. This is so abstract from the perspective of a rookie, and yet, so clear. Why? Corey uses the simplest possible examples at every step, has code ready to change, makes the simplest possible changes, explains everything he is doing, often before he does it and again after he does it. He does not race through everything, hoping to show us how fast or easy some system is or how clever he is. It's so clear, I was able to deduce some properties of git that he didn't even tackle in his exposition. I absolutely agree with Adrian Wilk: Go through the entire video even if you plan to work with git only locally. No matter what you're doing, take the time to study every video CS makes that has any bearing on your goals. NOBODY DOES IT BETTER. Theres no FOO or BAR here. Instead he names the remote repository "origin" to clarify git's checkout and push commands, showing file changes at every step with appropriate commands. Most of the explanatory video on the web is too basic for me now. Why? BECAUSE OF COREY SHAFER. Good morning Corey! I sure could use a video on using slightly advanced query objects in Django to work with related tables. I'm raising your monthly stipend 50%.
Among the other TH-cam videos in coding (series tutorials in particular), I found your content more engaging yet straight to the point. Your voice is also soothing and easy to follow; Like when I was watching your Python tutorials, I can anticipate what you "will do" next and then makes me feel like I actually "get it". That is a form of talent - the kind of empathy a great teacher has!
That is the best git video serires on TH-cam still in 2019! Great work, thank you so much!
i've been looking all over the internet for a great git command line tutorial and it was nowhere to be found on the git website or its linked videos, but i most certainly did find it here. THANKYOU. BEST, EASIEST TO UNDERSTAND GIT CL TUTORIAL ON THE WEB. Why is it so hard to find people who explain programming in regular words like you do? This is so useful.
Great voice for being an instructor
I want to learn using github by terminal for long time but I can't find a tutorial clear like this one.
I follow it STEP BY STEP and practice few time with my github. Right now, I am sure to master it.
Thank you so much!
I can't resist myself from paying the fees(this is not donating because you are the donor Corey!!).Thank you very much.
Excellent..much much better than commercial 3 hour long tutorials ..thank you..
Such a nice and comprehensible tutorial. I've struggled quite a lot to understand how to use git. Thank you so much for your effort, Corey! :)
There are many tutorials out there but it's hard to find one that's to the point, relevant and easy to understand without too many frills and gimmicks. Well done.
Got here from The Odin Project. Thanks TOP
Excellent Tutorial. Super helpful to start the student with remote then clone it, and then watch how mods on cloned repo interact with the remote. Most teachers make huge assumptions and leave the student in the dust within five minutes. You don't gloss over stuff when you teach. Thanks very much!
Odin Project brought me here. Even 5 years this video is still relevant and game changer for git noobs like me. Thanks for sharing your expertise.
Ps: What's the service you are using to show slides? Is it selfhosted?
talk about clearing concepts and the last 30 secs to tie it all in. Thank you kind sir, please wear a cape to work.
Extremely well made and detailed video! it explains all the basics of Git in a very simple and easily understandable manner. Thank you Corey!
I decided to learn a bit more than the most basic operations in Git. And I am so glad that you covered this topic, as you never let me down. Thank you for doing these tutorials.
Thank man, you 're the best instructor in my whole life :)
The best git tutorial I ever found on youtube.
Wow!!! I love this guy! Please be my professor.
this comment is for those who are looking for best content available in youtube for coding: only few channels are here who really have great content one is corey schafer and other is sentdex both of you guys are awesome. You both have taught me alot. Thanks, sir.
This is the best tutorial for Git. Good job! +1 sub
Got to say, you are a natural teacher. Very nice explanations, good pace, engaging and easy to follow. One of the best tutorials available on youtube!! Thank you so much :)
Very nice video, nice and simple to understand example. excellent job.. keep posting such videos..
you are new to Git, go through it. Best Tutorial i have seen so far. Thanks Corey
Thank you from Colombia, the odin project has sent me here :)
me too :)
thank you! two hours ago I was desparate about one project on my work! but after your tutorial I was able to properly commit everything that I wanted! Bravo!
Just want to say that you are the man!!
I was seeing which video should i watch to know about GIT, Fortunately i landed here.
I only downloaded first video, after watching 1st one, my soul forced me to download and watch all videos. Today is 31/10/2020. Thank you sir.
Many thanks for your help and time. This is a great tutorial. Good job!
This guy is the best teacher ever.
The Odin Project brought me here and as an actual NOOB, I am totally lost.
You are lost in which part? You wanna help?
I'm from The Odin Project and I'm learning Git for the first time too
@@marymad4203 me too, i got so lost, i cant seem to find the .gitignore or after touching it, also hard to follow the steps without actually doing it as he speaks
@@andikanakpan8436 I know, it happens sometimes, is normal. You can focus on git init, clone, status, add and commit for now, just to familiarize with git workflow. And the others commands you can learn after you learn these above. I hope it helps you :)
Im stuck on this part as well. Would anyone like to connect on discord and work together?
Direct and to the point tutorial, a must watch for git-hub neophytes.
My brain is so slow that I had to watch your video on 0.75 speed to fully grasp what you were saying.
Super video. There's so much, I had to watch it numerous times, stopping and starting while taking notes.
The most useful thing is that you show the sequence of commands needed to perform a function.
Thanks a million ! This was very detailed.
I have run into a bare / non-bare repository problem on my local machine. I like your videos; you take things seriously. Thanks.
This is one great rich content tutorial you made!!!! (Y) Thanks aloooot!!! :D
I wasn't getting it at first but watched this video 2nd and then the 3rd time after practicing and failing a bunch of times and now it has started to make sense. thank you.
very well explained...thank you :)
That moment when Corey explains Git better than the tutorials in github itself. (y) Thanks mate.
Thanks. Glad it helped!
6:04 How did you get out of/clear the user manual from terminal? Answer: press "q".
Thanks to you, I am now on GitHub successfully. Took many times through the video, but no other video made the process clear enough for me tackle it. I'm starting to teach the nieces a few things in electronics and microprocessors. This is going to help greatly on the programming end. Much appreciated.
I think I've officially hit the "wtf is going on" part of learning... Not sure I'm even learning anything, honestly.
same here
me 2
Mash house ya that wud be great. Git makes no sense to me
Likely because you guys haven't stumbled into the problems git solves.
Sorry you feel this way! Learning this stuff, as with anything you're learning for the first time, can be frustrating. Hope me offering some advice isn't seen as presumptuous on my part. In the wild, git is used primarily on teams collaborating on code, but you can use it on your own personal projects to keep track of changes. If I were you, I'd try to start a small project - just something with a few lines of code - and then head over to GitHub. From there, create an account, set up a repository, and commit your code to that repository. Of course, you need to initialize your local repository and "connect" it to the remote one you've set up on GitHub as well. This tutorial gives you most of the tools to do that, but you'll also probably need to Google around a bit.