Git and GitHub Tutorial for Beginners

  Рет қаралды 1,197,848

Kevin Stratvert

Kevin Stratvert

Күн бұрын

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 KZfaq
kzfaq.info?...
⚖ 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

Пікірлер: 989
@chocodonuts3644
@chocodonuts3644 4 ай бұрын
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.
@IamWaliJan
@IamWaliJan Жыл бұрын
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!
@chilloutlemur9979
@chilloutlemur9979 3 ай бұрын
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!
@dnaldoog3114
@dnaldoog3114 Ай бұрын
I agree!
@cdeoliveira
@cdeoliveira 28 күн бұрын
I concur
@tolulopebolaji1582
@tolulopebolaji1582 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
well said
@temitopekade590
@temitopekade590 Жыл бұрын
I agree! Great content !
@frankkuhlmann8538
@frankkuhlmann8538 7 ай бұрын
Thanks buddy. You hit the nail. No more to add. :)))))
@danfarrent2867
@danfarrent2867 7 ай бұрын
​@@nicomalGG
@rishdhisabith2585
@rishdhisabith2585 Жыл бұрын
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
@mattster6119
@mattster6119 Жыл бұрын
I have seen a good number of Git and GitHub tutorials on KZfaq and elsewhere, and I can honestly say this one is by far THE BEST. Detailed and not overwhelming for a beginner. Thank you Kevin!
@zahidar8340
@zahidar8340 10 ай бұрын
Exact how i feel. Thank u Kevin !
@WilsonRodriguesD
@WilsonRodriguesD 7 ай бұрын
I agree!
@stephendalton3558
@stephendalton3558 4 ай бұрын
Agree 100%
@Artelion-pk2he
@Artelion-pk2he 3 ай бұрын
Exactly!
@panda2cloud.
@panda2cloud. 3 ай бұрын
I totally agree, the details are suitable for a beginner
@jodi8076
@jodi8076 Жыл бұрын
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!
@savvy_fred
@savvy_fred Жыл бұрын
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.
@rocco9t9
@rocco9t9 Жыл бұрын
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.
@pmarc65
@pmarc65 Жыл бұрын
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!
@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!
@blurryface616
@blurryface616 9 ай бұрын
Hands down one of the best channels on KZfaq. So detailed yet so simple to follow along. Thanks a lot Kevin, you are great a teacher.
@coronaphone710
@coronaphone710 7 ай бұрын
Small thanks from me 2
@EcnerYT
@EcnerYT 6 ай бұрын
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!
@is-gm6hg
@is-gm6hg Жыл бұрын
A true educational masterpiece! Thanks for your time and hard work
@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!
@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
@chaerw
@chaerw Жыл бұрын
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.
@glrbrasil
@glrbrasil Жыл бұрын
This is not only the best Git tutorial I've watched but one of the best tutorials for devs in general 👏
@chrissandoval9459
@chrissandoval9459 2 күн бұрын
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!
@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.
@djmrky75
@djmrky75 Жыл бұрын
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 :-)
@ashokviswanathan920
@ashokviswanathan920 6 ай бұрын
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.
@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.
@put1996
@put1996 Жыл бұрын
One of the best Git Tutorial I saw on KZfaq. No hand waving unorthodox layout and OS like the most popular video that make it impossible to follow along.
@PabloZumba
@PabloZumba Жыл бұрын
Thanks, Kevin. In my search for a tutorial that is both concise and short, your video really fits the bill.
@zahid_9217
@zahid_9217 Жыл бұрын
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 KZfaq 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
@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!
@titom2772
@titom2772 3 күн бұрын
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.
@heathicusmaximus8170
@heathicusmaximus8170 Жыл бұрын
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.
@Chacha355
@Chacha355 Жыл бұрын
Thanks a billion for this tutorial. You cut through the chase, went straight to the point and made it so easy to understand
@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
@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!
@josephkatongole4659
@josephkatongole4659 3 ай бұрын
I learning how to use Git and GitHub, I feel this is a one stop tutorial. I am just watching it over and over
@microdavid7098
@microdavid7098 Жыл бұрын
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
@abhishekkalal5221
@abhishekkalal5221 Жыл бұрын
first time i watched git and git hub tutorial completly in one go.. best tutorial ..
@weiSane
@weiSane Жыл бұрын
Omg, the best git and GitHub tutorial...you saved form confusion and saved me time too. The delivery was very good. Thanks man.
@maximilianosalibe1710
@maximilianosalibe1710 Жыл бұрын
Excellent tutorial, Kevin! I've seen other tutorials on Git before, and I find this quite clear and useful! Thanks a lot!
@yoip1234
@yoip1234 Жыл бұрын
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!
@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.
@sevanthishekar4379
@sevanthishekar4379 7 күн бұрын
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.
@SaFFire123x
@SaFFire123x Жыл бұрын
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!!
@erikkozlowski4736
@erikkozlowski4736 Жыл бұрын
Great tutorial on the basics of Github, very straight forward. Pace and production quality were spot on.
@daveyr8389
@daveyr8389 2 ай бұрын
Not even finished watching but every time I have a question Kevin answers it right away. This is great, kudos!
@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!
@miransh
@miransh Жыл бұрын
Great teaching Kevin, I really appreciate your dedication in helping us learn - no one explains it like you do ! Keep it up ....
@jdsgotninelives
@jdsgotninelives Жыл бұрын
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 😊
@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!
@kilsysalazar
@kilsysalazar 4 ай бұрын
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.
@mrprofomedia
@mrprofomedia Ай бұрын
the deeper get into the video, the more I appreciate.
@bipinjadhav5064
@bipinjadhav5064 Жыл бұрын
Fantastic video Kevin, it is designed very systematically to understand the entire flow of GIT and GITHUB perfectly ...Thanks for the video
@bob130
@bob130 11 ай бұрын
Kevin, you are the best at simplifying this content for new users, I appreciate it so much!
@dimitriskarathanasis8938
@dimitriskarathanasis8938 8 ай бұрын
That was an absolutely easy-to-follow and fully understandable video tutorial! Many congrats! As we say in Greece "Μπράβο φίλε! Καταπληκτική δουλειά!". Thank you so much!
@rocco9t9
@rocco9t9 Жыл бұрын
Thanks Kevin for such a neat and organized tutorial. Thanks for for everything I learnt from you and will learn in future.
@pantuabafras9899
@pantuabafras9899 Жыл бұрын
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.
@md.mubarratbinislam3597
@md.mubarratbinislam3597 Жыл бұрын
Best git tutorial ever. This is the first time I understand git easily. Thanks.
@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❤
@AlexTheAnalyst
@AlexTheAnalyst Жыл бұрын
Absolutely fantastic! Huge fan of Git and GitHub. This kind of content is needed.
@daviddare2938
@daviddare2938 Жыл бұрын
you explained everything so easily! You are a very good teacher.
@jumbojet999
@jumbojet999 Жыл бұрын
This is the most complete and easy to catch up GIT guide I have encountered on YT! Thanks man!
@rijwanalam4282
@rijwanalam4282 5 күн бұрын
I have seen lots of Git and GitHub tutorial on KZfaq but this is the excellent and very helpful for me (beginners) Thank you ❤❤
@mikeh7704
@mikeh7704 Жыл бұрын
Thanks for another excellent educational video. Clear, well laid out and easy to follow along.
@carrieprice78
@carrieprice78 Жыл бұрын
You’re incredible and such a great teacher!
@KevinStratvert
@KevinStratvert Жыл бұрын
Thank you! 😃
@reasonerenlightened2456
@reasonerenlightened2456 Жыл бұрын
@@KevinStratvert too many clicks and stuff to remember. Computers are supposed to be getting smarter,.
@yorickvlt1021
@yorickvlt1021 7 ай бұрын
Mans living in an alternate reality
@dilankakasun6033
@dilankakasun6033 7 ай бұрын
My god this tutorial is awesome. Ran through a whole project in no time. Great stuff.
@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!
@oluwadamilaretijani1777
@oluwadamilaretijani1777 Жыл бұрын
This man is a great Teacher. He can simplify concepts a lot, just like CoreySchafer, a great Python programming instructor. Weldone sir
@jb_457
@jb_457 Жыл бұрын
A really well thought out , easy to follow and comprehensive tutorial. Thank you.
@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!
@preciousc
@preciousc 3 ай бұрын
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!
@donaldnwokoma506
@donaldnwokoma506 Жыл бұрын
thanks Kevin!!! I just fetched and merged knowledge from this video
@ssrinivas42
@ssrinivas42 Жыл бұрын
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
@shounaknaik8939
@shounaknaik8939 8 ай бұрын
This is a guide I regularly refer to for working with git and Github. Appreciate the simplicity!
@deepaksingh-ranger9225
@deepaksingh-ranger9225 10 күн бұрын
I have to say this is one of the best explanations I have watched on using Git and git hub. Thanks Kevin. Very useful
@Sera_Vaz
@Sera_Vaz Жыл бұрын
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 KZfaqr because you have been making technology a lot simpler for people like us!
@stevenlomon
@stevenlomon 3 ай бұрын
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 ай бұрын
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
@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.
@ClayMonster66
@ClayMonster66 9 күн бұрын
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
@shadan2813
@shadan2813 Жыл бұрын
Kevin is really a great teacher.
@prism_schism
@prism_schism Жыл бұрын
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.
@jjguillermo-dev
@jjguillermo-dev 24 күн бұрын
I didn't understand Git and GitHub well until I found this tutorial. Thanks, Kevin!
@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.
@fauxflights77
@fauxflights77 11 ай бұрын
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"
@dollarblitz
@dollarblitz 4 ай бұрын
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
@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.
@taiwoafolayan8489
@taiwoafolayan8489 Жыл бұрын
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.
@lukemoon4466
@lukemoon4466 Жыл бұрын
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
@mrcontrol111
@mrcontrol111 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
How your level in 8 Moonth?
@jeffreystine4638
@jeffreystine4638 3 күн бұрын
Three years later and still the most relevant and to the point git and github tutorial
@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!!!
@fuzzydark1395
@fuzzydark1395 Жыл бұрын
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.
@_AllAboutSky
@_AllAboutSky Жыл бұрын
Thanks, Kevin! You make every subject seem easy and doable.
@ebayoscorner5512
@ebayoscorner5512 8 ай бұрын
Deeply appreciate the hard work you put into this....Very exhaustive, thorough and apt. The best you got here
@hueytaruc
@hueytaruc 6 ай бұрын
I've been looking for an easy-to-follow video for learning about git and github and this is by far the best I've seen yet! Thanks Kevin :-)
@ceciliocbaroperez8815
@ceciliocbaroperez8815 10 ай бұрын
Excellent explanation Kevin, so well-structured and pedagogically well presented. Many thanks!
@TimothySeymour-jj6db
@TimothySeymour-jj6db 5 ай бұрын
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!
@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 👍
@billyhuggins2212
@billyhuggins2212 Жыл бұрын
Excellent info. I’m completely Right brained and get completely overwhelmed with all those “words”. Thank you for explaining it.
@kirschmackey_official
@kirschmackey_official 8 ай бұрын
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.
@kannantm2731
@kannantm2731 5 ай бұрын
Thanks Kevin, This is a well presented GIT tutorial, by far one of the best on KZfaq . Easy to follow , and understand.
@davidpipgras9423
@davidpipgras9423 Жыл бұрын
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!
@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
Git Tutorial For Dummies
19:25
Nick White
Рет қаралды 993 М.
GitHub Basics Made Easy: A Fast Beginner's Tutorial!
23:30
Skill Foundry
Рет қаралды 57 М.
The delivery rescued them
00:52
Mamasoboliha
Рет қаралды 7 МЛН
1❤️#thankyou #shorts
00:21
あみか部
Рет қаралды 12 МЛН
Docker Crash Course for Absolute Beginners [NEW]
1:07:39
TechWorld with Nana
Рет қаралды 1,4 МЛН
Git MERGE vs REBASE: The Definitive Guide
9:39
The Modern Coder
Рет қаралды 68 М.
SQL Tutorial for Beginners
44:57
Kevin Stratvert
Рет қаралды 1,9 МЛН
Git, GitHub, & GitHub Desktop for beginners
22:16
Coder Coder
Рет қаралды 703 М.
Git Tutorial for Beginners - Git & GitHub Fundamentals In Depth
43:06
Tech With Tim
Рет қаралды 817 М.
Git Tutorial for Beginners: Learn Git in 1 Hour
1:09:13
Programming with Mosh
Рет қаралды 2,3 МЛН
Git vs. GitHub: What's the difference?
10:06
IBM Technology
Рет қаралды 374 М.
Learn GitLab in 3 Hours | GitLab Complete Tutorial For Beginners
3:26:43
keren sih #iphone #apple
0:16
Muhammad Arsyad
Рет қаралды 365 М.
Где раздвижные смартфоны ?
0:49
Не шарю!
Рет қаралды 552 М.