the content, the flow, the voice, the charisma .. everything is perfect! we are living in a time of getting the best education. thanks Brian, Thanks Harvard!
Meeeeeen!! You are a born teacher! In all my life, I have not seen a facilitator of your type! fast-paced with concepts well-introduced before providing demos. I bet I'll watch the whole series 10 times over. Thank you very much.
I’ve been trying to learn for two weeks I’m going to start a boot camp January and he’s the only person I can understand I was thinking of not going forward but after hearing him teach I now know I can do it thanks man
The best explanation of fundamentals of git that explained. I totally watched different tutorials and still confused to it. but NOW i am confident about the fundamentals of Git. Thank you Harvard!
If your terminal commands are not working then maybe that is because you need to install GIT to your machine first. It is briefly mentioned but not demonstrated so pretty easy to miss. Furthermore, some of the command line commands are mac only so you may need to google for your OS' equivalent of them - for example 'ls' doesn't work in command prompt (but does in powershell) and you should use 'dir' instead. ' Touch' is also not available in Windows command prompt, but there are alternatives you will need to google for (or simply create the files directly in your IDE). Very weird they have left this information out in what is otherwise a very good series - it may not be obvious to people who've never used GIT or the terminal before; aka the majority of the viewers here I imagine. To be quite honest - if you're relatively new to all of this and just want a good introduction to web programming and are learning this on your own -> please just skip this GIT lecture. Sure, people will argue that this is mandatory material for developers, but I feel most people / the target audience won't be needing this skill just yet if learning solo. Feel free to revisit this lecture later and proceed to lecture 2. If you do intend to install GIT and follow along then it's very likely you'll have to google around trying to get it to work because Github Desktop might not install correctly (that is; set the PATH variables properly) and you'll probably want to look for 'standalone GIT' and install that instead.
@@Adib759 You are absolutely correct, I missed that. I have edited my comment slightly - I still think for most people the mention is too fast because GIT may not install correctly for some people and can be quite a hassle. The remarks in regards to commands like 'ls' and 'touch' still hold true. Thanks for pointing that out.
@@husseinkassem494 True, but then I would simply suggest using Git Bash, which if you're following along with this lecture will probably be available to you already and works well with the provided commands too. I'm making the assumption that a lot of viewers are not looking to introduce yet another application / some unix shell (or buy a mac :) ) and are running windows 10. Nothing shown here can't be done with good ol' windows and a few workarounds though.
Awesome, thank you for the great lecture, Brian. Simple and straightforward thank you very much and it so easy now to understand and picture what it does. Will explore more on this.
anyone being prompted for username and password for github when using git to clone the repository? The terminal locks me out when i try to input my github password....
Few of you may face problem at 9:30 in git clone stuff probably. If you faced it then you must haven't installed git. And after this locate to cd One drive and then you will find whichever folder you want it to place and then create by touch hello.html & git clone link.
you can do that exactly the same way except the terminal will be running in your ide. I use VS Code and as soon as you run your program you can use the terminal in the IDE to perform all the tasks
Actually i have a complaint about the fact that when i installed git and used it, apart from the commands everything was freaking different it was a pain in the ass to use "git commit, git push" and now i have a hatred against git :)
@@jayc5332 dude i had to use a lot of different commans i don't even remember, i think i changed it to use ssh instead of password then i had another problem, and it seems like i have to tell git which repo I'm using whenever i try to git push
I highly recommend using WSL (Windows Subsystem for Linux). It is built in to Windows. Just click the search button and search for "WSL" and the setting page should come up as the first result. Just click through the dialogue and enable it. It will download an image of any Linux OS you want from the MS Store (I recommend just using Ubuntu). Then you can just search 'WSL' and the WSL terminal should be the first result. You open that and you have a Linux terminal environment which is almost the same as the Mac the instructor is using.
what if it's the other way round? I have a project written in VSCode on my computer and I want to push it to Git Hub for the very first time (no even repository yet)? How do I do that?
I think you'll create a repo on github, then clone that, then copy all your local files into that specific cloned folder then commit -am them and then push them......
code . command dint work on my terminal. Google a few things tried it. it is convenient to open the text editor from within terminal so please suggest ...
That's the way of Launching Visual Studio Code on current directory, make sure you have Visual Studio Code installed and added to Your Enviroment Variables. And one more thing Visual Studio and Visual Studio Code are two different things, What you want is Visual Studio Code.
the content, the flow, the voice, the charisma .. everything is perfect! we are living in a time of getting the best education. thanks Brian, Thanks Harvard!
totally agree!
I have tried understanding GIT and Github from so many video lectures in the past but this is the first time that I feel so confident.
lets take a moment to appreciate that these videos are not monetized .
yes
but now google change everything
Thanks to their 40Billion $ endowment fund
Pretty sure they're already getting paid lmao
Let's not. Harvard has one of the most corrupt "admission" systems. Anyone connected to establishment can buy their seat. Want examples?
Brian's Git video is by far the best I've ever seen on TH-cam.
Amazing course. It's awesome that Brian, being so young, keeps up with the quality level of David's lectures. Thanks Brian, thanks CS50!
harvard should put all its cs classes youtube ... it would be a great contribution to the world.
sadly, that will be the end of college as a business.
but totally agree for your opinion
MIT has done that.
@@freeeagle6074 Really???
@@clovemao329 sadly? College doesn’t need to exist as a business in its current form
Meeeeeen!! You are a born teacher! In all my life, I have not seen a facilitator of your type! fast-paced with concepts well-introduced before providing demos. I bet I'll watch the whole series 10 times over. Thank you very much.
I’ve been trying to learn for two weeks I’m going to start a boot camp January and he’s the only person I can understand
I was thinking of not going forward but after hearing him teach I now know I can do it thanks man
If you get stuck with git log, as i did, press q for quit.
LoL
Hurr!!
Tee hee hee!
This whole course is so practical and to the point, thanks a lot!
This was great Professor Brian! Finally wrapped my head around Git Version Control!
This is the best git explanation I've came across. Thank you CS50! ❤️
The best explanation of fundamentals of git that explained. I totally watched different tutorials and still confused to it. but NOW i am confident about the fundamentals of Git. Thank you Harvard!
This is awesome, straight to the main point
If your terminal commands are not working then maybe that is because you need to install GIT to your machine first. It is briefly mentioned but not demonstrated so pretty easy to miss.
Furthermore, some of the command line commands are mac only so you may need to google for your OS' equivalent of them - for example 'ls' doesn't work in command prompt (but does in powershell) and you should use 'dir' instead. ' Touch' is also not available in Windows command prompt, but there are alternatives you will need to google for (or simply create the files directly in your IDE).
Very weird they have left this information out in what is otherwise a very good series - it may not be obvious to people who've never used GIT or the terminal before; aka the majority of the viewers here I imagine.
To be quite honest - if you're relatively new to all of this and just want a good introduction to web programming and are learning this on your own -> please just skip this GIT lecture.
Sure, people will argue that this is mandatory material for developers, but I feel most people / the target audience won't be needing this skill just yet if learning solo.
Feel free to revisit this lecture later and proceed to lecture 2.
If you do intend to install GIT and follow along then it's very likely you'll have to google around trying to get it to work because Github Desktop might not install correctly (that is; set the PATH variables properly) and you'll probably want to look for 'standalone GIT' and install that instead.
I really have to thank you since I was struggling with the command prompt and every single command he typed, didn't work on my machine
7:33
@@Adib759 You are absolutely correct, I missed that. I have edited my comment slightly - I still think for most people the mention is too fast because GIT may not install correctly for some people and can be quite a hassle. The remarks in regards to commands like 'ls' and 'touch' still hold true. Thanks for pointing that out.
Or rather you can install ubuntu terminal (or any Linux terminal) on windows and all of a sudden all the command will work
@@husseinkassem494 True, but then I would simply suggest using Git Bash, which if you're following along with this lecture will probably be available to you already and works well with the provided commands too.
I'm making the assumption that a lot of viewers are not looking to introduce yet another application / some unix shell (or buy a mac :) ) and are running windows 10.
Nothing shown here can't be done with good ol' windows and a few workarounds though.
All this time I'm thinking how much work it took to make this lecture!!!! It is so clean and well structured
Amazing content. I see myself already as a developer after 10 years in the lawn mowing industry. Believe in yourself
I've never seen a Git guide as clear as this video
This course is a real treasure
great class, I knew nothing and now i have a clear picture on GIT and Github. Thanks!!! now heading to the next video
Best GIT tutorial I've ever seen
really , good explain for git and github , good instructor Brian and good examples
You are amazing Brian. Thanks Harvard for such an amazing course ❤️ You guys are really changing the world.....
Best GIT tutorial I've ever seen
Very straight to point and user friendly
just finished . thank you Brian . I reall your appriciate your teaching method.
really my confusion about github has gone. still on the way .
This is a teacher. Thank you, Thank you
Thank you for sharing with us free contents like this! 🥰
This is the first git tutorial i understand. Thanks you so much🙏👌💯
Brian, respect! You are great!
These are really great educators. Thank you for doing these videos!
best git &github video i have ever seen before.
absolutely golden content. Thanks!
Awesome, thank you for the great lecture, Brian. Simple and straightforward thank you very much and it so easy now to understand and picture what it does. Will explore more on this.
Thanks Brian, that was awesome!
Hope every university's lectures would be like this !
💻💻💻💻 Amazing Lecture 💻💻💻💻
Thanks a lot for making these courses free 🥺❤️🙏
this guy is too good - make him a full time teaching professor - he is just too good
finally i understnd Git and GitHub, thanks Havard team!
This kid is way too smart
Great introduction to Git
Great explanation of Git and GitHub, thanks Brain!
Very thorough and nicely explained.
i don't think there is a better video on the internet, well crafted and presented💯
Amazing Brian! Thank you so much
Thanks Brian ❤🎉
Realy good stuff here. He is a good speaker as well!
Best explanation yet!
6:00
14:28
Brian wonderful and to the point lecture! Thank you.
This is amazing!!!!!!!!!! Thank you very much!!! Now I understand the essence of git and the way I can employ it!
This was seamless. Thanks!
why am i trying to use the git clone on my Windows Powershell and getting errors? I already have GitHub installed into my computer
git is not the same as Github...
clear and easy to understand. thank you
I like theses echeos
feels like im there listening
Great teacher😮
thank you Brian!
Beautifully explained.. 🤩 Thank you so much..
anyone being prompted for username and password for github when using git to clone the repository? The terminal locks me out when i try to input my github password....
In the linux terminal when you type passwords they don't appear but they're still there, just type it correctly and press enter
Apparent improvement over your past lectures on the same topic. we appreciate that, sir.
da best professor!!
This guys is AMAZING!!!
thank you Brian ❤❤❤
I
And what about the "staging" step? Is it not necessary anymore?
This is so practical. Thank you
I love this man
We can open the html file with start command in powershell on Windows.
Few of you may face problem at 9:30 in git clone stuff probably.
If you faced it then you must haven't installed git.
And after this locate to cd One drive and then you will find whichever folder you want it to place and then create by touch hello.html & git clone link.
Thanks Harvard!
An excellent explanation, but NOT entirely up-to-date as you currently need RSA key authentication to access the repository from the command line.
where is this terminal window in computer?
Cmd
Wow, Thank you so much
What if we're using other code editor like ATOM. How do we run the commands of github on that ?
you can do that exactly the same way except the terminal will be running in your ide.
I use VS Code and as soon as you run your program you can use the terminal in the IDE to perform all the tasks
You can use your system terminal as well
Actually i have a complaint about the fact that when i installed git and used it, apart from the commands everything was freaking different it was a pain in the ass to use "git commit, git push" and now i have a hatred against git :)
Same I keep getting errors not too sure what I am doing wrong :/
@@jayc5332 dude i had to use a lot of different commans i don't even remember, i think i changed it to use ssh instead of password then i had another problem, and it seems like i have to tell git which repo I'm using whenever i try to git push
Thank You Very Much, Amazinggg
Wooow.. thank you great explanation.
This presentation was done with a Mac book, how do I find my terminal using Windows.
You the best. . .
git push doesn't do anything literally, I'm stuck there
I'm on windows
You are a livesaver
well done.
Good evening everyone, I need help with the Git program, I can't do the exercises that Brian explains from the beginning. my pc has windows
I do not have the zsh panel. I use windows, so what is the alternative to it and the corresponding commands to zsh such as git or open
I highly recommend using WSL (Windows Subsystem for Linux). It is built in to Windows. Just click the search button and search for "WSL" and the setting page should come up as the first result. Just click through the dialogue and enable it. It will download an image of any Linux OS you want from the MS Store (I recommend just using Ubuntu). Then you can just search 'WSL' and the WSL terminal should be the first result. You open that and you have a Linux terminal environment which is almost the same as the Mac the instructor is using.
Thanks a lot .. That was se helpful!
Thank you so much! this was really helpfull
what other way we can do all this without using the cmd prompt?
very good
Cristal clear
thanks a lot
34:46 Git reset
49:13 GitHub pages
If you want to enjoy this lecture, git speaker 🔊 and commit your Bluetooth
thanks veryyy mach 👌👌
this dude is so fucking smart
this is his least smart video
Interesting fact: Brian's github pages website is currently working with the same content :)
I am unable to download Sass & Git on my Windows 7 PC. Please help me.
what if it's the other way round? I have a project written in VSCode on my computer and I want to push it to Git Hub for the very first time (no even repository yet)? How do I do that?
I think you'll create a repo on github, then clone that, then copy all your local files into that specific cloned folder then commit -am them and then push them......
None of the commands seem to work even after several hours of trying to install git the right way. I only get errors that vsc doesnt recocnise git.
Did you find solution?
@@blackholesun4942 it’s a while ago, but yeah, I think just restarting the computer was the thing that did the trick
code . command dint work on my terminal. Google a few things tried it. it is convenient to open the text editor from within terminal so please suggest ...
That's the way of Launching Visual Studio Code on current directory, make sure you have Visual Studio Code installed and added to Your Enviroment Variables.
And one more thing Visual Studio and Visual Studio Code are two different things, What you want is Visual Studio Code.
thanks ❤