Learn Git - Full Course for Beginners

Поділитися
Вставка
  • Опубліковано 30 тра 2024
  • In this Git course for beginners, you will learn the essentials of version control to help you manage your projects more efficiently.
    ✏️ Course developed by @HiteshChoudharydotcom
    Code for React app: github.com/hiteshchoudhary/re...
    ⭐️ Contents ⭐️
    ⌨️ (0:00:00) Introduction to GIT series
    ⌨️ (0:05:54) Git init and hidden folder
    ⌨️ (0:23:27) Git commits and logs
    ⌨️ (0:40:02) Git internal working and configs
    ⌨️ (1:07:47) Git merge and git conflicts
    ⌨️ (1:47:21) Git Diff and stashing
    ⌨️ (2:15:42) Git rebase is not that scary
    ⌨️ (2:37:24) Insight of pushing code to github
    ⌨️ (3:18:18) How to make Pull Request and Open Source contribution
    Channel link:
    / hiteshchoudharydotcom
    🎉 Thanks to our Champion and Sponsor supporters:
    👾 davthecoder
    👾 jedi-or-sith
    👾 南宮千影
    👾 Agustín Kussrow
    👾 Nattira Maneerat
    👾 Heather Wcislo
    👾 Serhiy Kalinets
    👾 Justin Hual
    👾 Otis Morgan
    👾 Oscar Rahnama
    --
    Learn to code for free and get a developer job: www.freecodecamp.org
    Read hundreds of articles on programming: freecodecamp.org/news

КОМЕНТАРІ • 228

  • @bibeksamal5300
    @bibeksamal5300 21 день тому +19

    git commit - m "hello everyone one, this git course help me a lot, thanks you Hitesh bhai"

  • @AricYount
    @AricYount 22 дні тому +46

    This is perfect timing. I just started learning git to integrate it with software at work. Thank you!

  • @HiteshChoudharydotcom
    @HiteshChoudharydotcom 22 дні тому +179

    Thanks everyone for the support. Hope you will learn and use this knowledge in your development life.
    Follow me at X (twitter) for more updates.
    twitter.com/@hiteshdotcom

  • @mesachinjakhar
    @mesachinjakhar 20 днів тому +19

    00:01 Learn essentials of Version Control with Git
    02:10 Understanding the workflow of git and the behind-the-scenes details.
    05:53 Introduction to series on Git
    07:53 Install Git for source control management
    11:42 Git acts as a checkpoint system for file changes, allowing collaboration
    13:41 Understanding the concept of repository in Git
    17:25 Introduction to Git initialization and tracking
    19:17 Exploring the structure of a git folder
    22:51 Setting up working directory, staging area, and commits for code preparation
    24:33 Introduction to Git ad command
    28:04 Moving into the staging area with Git
    29:51 Understand the importance of providing a commit message
    33:35 Understanding why the terminal opened Vim for one user but not for another
    35:20 Programmers often message directly in command line, not waiting for code Editor.
    38:47 Debate about present vs past tense in commit messages
    40:36 Git configuration file setup and gitignore usage
    44:09 Configuring Git commands for user and email
    45:51 Install code command in path for VS Code setup
    49:36 Create a .gitignore file to secure sensitive information.
    51:27 Using git ignore file to exclude files from tracking.
    54:57 Learning how to use a .gitignore file effectively
    56:56 VS Code plugins provide useful features for working with git and managing configurations.
    1:00:37 A commit consists of a unique ID known as hash and related information.
    1:02:31 Explore hidden files and directories using ls -la command
    1:06:14 Importance of commit messages and repository logs
    1:07:54 Focus on git branches and collaborative environment
    1:11:29 Adding a new file to staging area and committing it in Git workflow
    1:13:13 Understanding Git branches as alternative timelines
    1:16:48 Creating and switching between branches in Git
    1:18:39 Showing behind the scenes of git workings and branch pointers
    1:22:13 Switching branches affects codebase
    1:24:16 Understanding the concept of head in branch management
    1:27:48 Learned about git branch command and shortcuts
    1:29:33 Understanding merging of branches
    1:33:15 Merged hero section and Navar into the main branch
    1:35:02 Deleting the Navar Branch
    1:39:00 Conflict in code management
    1:41:16 Understanding conflict resolution in Git
    1:44:37 Explaining the process of merging branches in Git
    1:46:21 Merged footer branch successfully
    1:49:49 G diff is not for comparing two different files; symbols may cause confusion.
    1:51:34 Interchanging branches can result in symbol interchanges. Don't assume codes are removing or adding.
    1:55:10 Understanding file changes and staging in Git.
    1:56:57 Showing file changes before and after staging
    2:00:35 Discussing git stashing and its workflow
    2:02:25 Conflicting changes prevent branch switch without commit
    2:05:54 Utilizing Git stash for efficient code management
    2:07:54 Stashing changes can be moved between branches
    2:11:35 Using 'git checkout' to move to a specific commit
    2:13:23 Ways to move back in Git branches
    2:16:55 Git rebase command can be divisive, but it's crucial to handle with care
    2:18:35 Git rebase rewrites history and merges code into a single timeline.
    2:22:10 Fixed navigation bar bugs
    2:24:13 Merge main branch into bug fix branch
    2:28:11 Rebasing a branch in Git with the master branch is important for maintaining clean commit history.
    2:30:06 Branches will still exist even after more work on bug fix
    2:34:01 Resolve conflicts using Git rebase
    2:35:46 Understanding and best practices for rebasing
    2:39:18 Be cautious about spamming, incident to be shared.
    2:41:05 GitHub account setup and SSH key
    2:44:36 Add SSH key to agent and set passphrase for Windows and Mac
    2:46:18 Adding SSH key to GitHub account for communication
    2:49:59 Initializing and managing Git repository
    2:51:56 Creating a public repository with important commands
    2:55:24 Configure git user information and SSH key for GitHub.
    2:57:11 Add a remote repository using git remote add
    3:00:43 Setting up remote repository for push and fetch
    3:02:33 Understanding and setting Upstream for pushing code in GitHub
    3:06:11 Learn how to clone a repo and work with branches on GitHub
    3:08:07 Learn about git and GitHub basics
    3:11:59 Understanding the flow of local and remote repositories
    3:13:45 Understanding the difference between git fetch and git pull
    3:17:17 Contribute with value, not spam
    3:19:03 Open source is more than just sharing code on platforms
    3:22:40 Talk to the founders and maintainers of the open source project.
    3:24:21 Open an issue, get it assigned, work on adding value.
    3:27:46 Quality contributions are crucial for job consideration.
    3:29:26 Learn how to make pull requests for open source projects.
    3:33:01 Creating and working on a new branch in Git
    3:35:05 Initiate push to remote repository
    3:38:52 Creating and reviewing a pull request
    3:40:30 Overview of open source contribution on GitHub

  • @samueledariese6878
    @samueledariese6878 22 дні тому +35

    God bless you all for these free tutorials 🙏🏾🙏🏾

  • @chaitaliarya-bg5qt
    @chaitaliarya-bg5qt День тому +1

    I've watched just 54 minutes & I'm feeling so good that actually getting real knowledge and I'm able to practice alongside and get exact same files, folders etc. HE IS AN EXCELLENT TEACHER, I'm really thankful for such people providing this knowledge for free for all of us.... Really excited to complete the full tutorial.... It's really a must watch vedio. Thank you for your efforts looking forward for more vedios on this channel and on your personal channel.

  • @the_humble_lazy
    @the_humble_lazy 22 дні тому +14

    Happy seeing Hitesh here yet one more time, he is a real gem of a teacher, and he exactly knows what concepts one will miss and makes sure no one forgets that

  • @freshlife782
    @freshlife782 19 днів тому +7

    First time completely watched a video, coded along, can't express my happiness thank you so much ........... Mr. hitesh ♥

  • @user-ef3ez1lf2n
    @user-ef3ez1lf2n 21 день тому +6

    Amazing course. Thanks a lot. Even though I work with git for approx 7 years, I was able to learn something new.

  • @arkajyotinaskar2858
    @arkajyotinaskar2858 22 дні тому +128

    Hitesh Choudhary has God level knowledge, I really like his videos because of his professional and industrial approach of teaching

    • @arkajyotinaskar2858
      @arkajyotinaskar2858 22 дні тому +8

      Currently my semester exam is going on and I'll have 2 month break before placement starts, I'll binge watch his nextjs playlist:)

    • @usmansaeed6750
      @usmansaeed6750 18 днів тому +2

      It seems you have no knowledge at all thats why you thinking like this

  • @hasiiabbasi
    @hasiiabbasi 21 день тому +2

    Seriously, this is one of the best videos for beginners who want to learn more about Git from both practical and theoretical points of view.

  • @andycgn1991
    @andycgn1991 21 день тому +2

    Hey Hitesh,
    thank you very much for your work. That was a useful 3.75 hours invested in your course. I'm not a beginner but I was still able to learn a lot more.

  • @junjuljunjul4392
    @junjuljunjul4392 День тому

    I am 40 min into the course, by far the best course i have experienced regarding this topic , also you sir are a great teacher.

  • @shayanali7672
    @shayanali7672 22 дні тому +13

    Chai aur Code ❤

  • @toncizizic
    @toncizizic 21 день тому +7

    On 25:48 the extension is Git Graph not Git Lens

  • @sjuul7053
    @sjuul7053 4 дні тому +1

    Thanks!!! I have really enjoyed the course. Kind regards from Belgium.

  • @gauravbawa5609
    @gauravbawa5609 22 дні тому +1

    awesome way to get started with git , you all gonna love the content

  • @sairithvickgummadala2688
    @sairithvickgummadala2688 22 дні тому

    I was just looking for a beginners course on Git and I have it! This channel is doing God's work for me

  • @aldrinseanpereira140
    @aldrinseanpereira140 22 дні тому +10

    Finally!! An updated beginner course on something as important as git

  • @functionc
    @functionc 22 дні тому +2

    Nice! I was just watching the old video and thinking we need an update! Thank you!

  • @dilipchapagain836
    @dilipchapagain836 18 днів тому +1

    Hithesh choudhary is best instructor ❤

  • @pranavgupta9939
    @pranavgupta9939 22 дні тому +1

    One of the best teacher, i have ever seen on youtube

  • @udaytewary3809
    @udaytewary3809 22 дні тому

    His way of teaching is really great he teaches the inner working so that we get a real feel of the topic and ur voice of teaching is just amazing ❤❤

  • @kelvinmacharia3715
    @kelvinmacharia3715 14 днів тому

    This a great. One yeat developer experience and this course is a greater refresher. There is always something new to learn👏. Good job and many thanks Hitesh

  • @jivara5523
    @jivara5523 4 дні тому

    big thanks for you this is the simplest git course i have ever watch

  • @sarthakpatwari7988
    @sarthakpatwari7988 20 днів тому +1

    another video on my weekend playlist !!

  • @philippprots4459
    @philippprots4459 5 днів тому +1

    Thanks, it really helped me to understand git a lot better!

  • @mdsonualam8408
    @mdsonualam8408 22 дні тому

    I have been working for quite a time now, and everytime hitesh sir brings something, it's a new learning experience 🎉🎉❤🚀🚀

  • @KamilFullStack
    @KamilFullStack 22 дні тому +1

    greetings from Poland ♥

  • @anthonydrakefordshadow
    @anthonydrakefordshadow 22 дні тому +1

    This is exactly what I need ❤ thank you 🙏

  • @sabbirhossan3499
    @sabbirhossan3499 22 дні тому

    Hitesh sir is very good teacher.

  • @HarshShah465
    @HarshShah465 19 днів тому +1

    Hitesh ) Choudhary great explaination sir!!

  • @2ru2pacFan
    @2ru2pacFan 14 днів тому

    Wow thank you FCC and Hitesh, amazing teacher and I've experienced in using Git but still learnt something. Thank you ✨

  • @aniationcoding918
    @aniationcoding918 16 днів тому +1

    Thanks for soo much for bringing this much knowledge for free. It will really help me a lot in order to become a good programmer.😊

  • @tarunsingh2480
    @tarunsingh2480 22 дні тому

    A true gem for upcoming software engineers🔥

  • @leythecg
    @leythecg 21 день тому

    Absolutely awesome in presentation and content! many thanks!

  • @learnwithsuyashshukla8347
    @learnwithsuyashshukla8347 21 день тому +1

    Perfect educator ....❤

  • @PritiGupta-yv3pt
    @PritiGupta-yv3pt 22 дні тому

    After completing your backend series I'll definitely watch this tutorial ☺️

  • @MuhammadAli-hh9td
    @MuhammadAli-hh9td 22 дні тому +2

    One of the best teacher I have ever seen, When I first check his channel that time i was just average newbie of js now I'm a mern dev just because of him hitesh Chaudhary, chai aur code

    • @shubhamgattani5357
      @shubhamgattani5357 18 днів тому

      Kya baat bro!

    • @MuhammadAli-hh9td
      @MuhammadAli-hh9td 18 днів тому

      @@shubhamgattani5357 bhai na ker 2 ghante say debugg ker raha hu sala error kidhar ha or ekta tumhara comment ka popup

    • @shubhamgattani5357
      @shubhamgattani5357 17 днів тому

      @@MuhammadAli-hh9td Ye lo ek aur pop-up aaya! Khuda Hafiz 😄

    • @MuhammadAli-hh9td
      @MuhammadAli-hh9td 17 днів тому

      @@shubhamgattani5357 solved hugaya bro error

  • @Ar4an
    @Ar4an 20 днів тому +2

    Hitesh ❤

  • @ashishkrpal4010
    @ashishkrpal4010 22 дні тому

    What a fantastic Git tutorial by @Hitesh Sir on the FreeCodeCamp UA-cam channel!
    His teaching style makes complex concepts easy to understand, and the step-by-step approach really helps beginners grasp Git fundamentals. I especially appreciated how he broke down branching and merging-it's such a crucial aspect of version control, and he made it so clear. Can't wait to implement these techniques in my own projects. Thanks for the invaluable lesson, Hitesh Sir and FreeCodeCamp! 🚀👨‍💻

  • @erfaizankakpori
    @erfaizankakpori 22 дні тому

    Honestly from the core of my Heart, brother you are really awesome in everything.
    I paid 2 lacs for online course but I couldn't understand easily there. From the time I started learning from your Videos now I feel it very easy to learn and understand easily.
    Thank you soo much brother for your effort.

  • @nimmerwo
    @nimmerwo 10 днів тому

    Thank you Hitesh, very good easy to follow course!

  • @naturevibes5388
    @naturevibes5388 22 дні тому

    Needed this, Thanksss

  • @Sanakhatir
    @Sanakhatir 22 дні тому

    One of most talented teacher ❤😊

  • @abhishekkumarjha4314
    @abhishekkumarjha4314 22 дні тому +1

    Content is much better than the paid courses❤❤

  • @amarjitpradhan9230
    @amarjitpradhan9230 22 дні тому

    Happy to see you sir❤

  • @idahodz
    @idahodz 21 день тому

    One of the greatest teachers 🙏🏻

  • @kaushalgupta1049
    @kaushalgupta1049 22 дні тому

    Love your way of teaching

  • @abhishekkumarjha4314
    @abhishekkumarjha4314 22 дні тому

    Awesome content sir .. Loved it ❤

  • @myblog8751
    @myblog8751 22 дні тому +1

    One of the best mentors on UA-cam, not only helps in learning latest tech skills but also builds confidence to build things on our own

  • @anujupadhyay7194
    @anujupadhyay7194 22 дні тому

    Hitesh sir is an amazing teacher

  • @mohammedmarshal8063
    @mohammedmarshal8063 19 днів тому +2

    Hitesh sir army, give a thumbs up!❤️

  • @quickmathematics9804
    @quickmathematics9804 22 дні тому

    Hitesh sir one of the best coding teacher ❤

  • @Abhishek-2727
    @Abhishek-2727 22 дні тому

    Hitesh sir one of the best teacher❤

  • @Chief_Avy
    @Chief_Avy 19 днів тому +1

    its nice seeing hitesh here.....i learned a lot from this but i was thinking whenever i do git pull some problem occurs and i would loved if he would have taught that too idk if the videos get edited and re uploaded but yeah

  • @aakashjha3150
    @aakashjha3150 13 днів тому +1

    Dhanyawad Hitesh bhai 🙏🙏

  • @CraigMullins1
    @CraigMullins1 22 дні тому +2

    18:57 - what happens if you hit git init again on an old project?

    • @NoName10920
      @NoName10920 16 днів тому

      straight from the git docs:
      Running git init in an existing repository is safe. It will not overwrite things that are already there. The primary reason for rerunning git init is to pick up newly added templates (or to move the repository to another place if --separate-git-dir is given).

  • @kabilann5903
    @kabilann5903 20 днів тому +1

    Much needed one!!

  • @Muwahid999
    @Muwahid999 22 дні тому

    Excellent mentor.

  • @kovan111
    @kovan111 7 днів тому

    Very good and very well presented. thank you it is soooo helpful.

  • @nope598
    @nope598 22 дні тому

    Hitesh is our hero who teaching courses in advance level

  • @mihirgohil7168
    @mihirgohil7168 21 день тому

    🎉 absolutely loved the video

  • @riteshbisht0903
    @riteshbisht0903 22 дні тому +1

    Thank you #freecodecamp
    Please Upload more videos with Hitesh sir 🎉

  • @SuryaKarigar
    @SuryaKarigar 21 день тому

    Awesome Guruji 😍😍

  • @pranavac-bg6ks
    @pranavac-bg6ks 22 дні тому

    Much needed❤

  • @adarshagnihotri3449
    @adarshagnihotri3449 22 дні тому

    Will make sure to learn git from hitesh sir this week

  • @nayan7065
    @nayan7065 22 дні тому

    Thank you sir You teaching is great

  • @austinmyer
    @austinmyer 22 дні тому

    It's a must learn for every techie

  • @Caivy
    @Caivy 5 днів тому +1

    29:49 to bookmark 📑

  • @aagebadhee
    @aagebadhee 21 день тому

    love to see again hitesh sir ❤❤❤❤❤❤

  • @dheerajbaheti
    @dheerajbaheti 22 дні тому

    Really need of this video
    Helpfull!!

  • @anandshinde0358
    @anandshinde0358 22 дні тому +1

    Thank you so much sir❤❤❤

  • @iamtharunraj
    @iamtharunraj 22 дні тому +1

    OMG. I was waiting for a git tutorial! Thank you! ❤

    • @NBGTFO
      @NBGTFO 22 дні тому +1

      There are multiple out there. Not sure why they felt the need to make yet another one.

    • @iamtharunraj
      @iamtharunraj 22 дні тому

      ​@@NBGTFOI don't actually understand from all those. Also, I love Hitesh's way of teaching. I've been searching for Git tutorials online for a long time but couldn't find one that actually fits my way

    • @ksubramanyeshwara
      @ksubramanyeshwara 22 дні тому

      @@NBGTFO Very well said. People are becoming fools day by day

    • @KoushikDas2005
      @KoushikDas2005 22 дні тому +1

      ​@@ksubramanyeshwarafools ? If a person wants to revise then it's better to do it from the tutor from whom he is familiar to

    • @KoushikDas2005
      @KoushikDas2005 22 дні тому +1

      ​@@NBGTFOno one asked you to watch it completely.
      It will help other beginners out there.

  • @MahimaBabani
    @MahimaBabani 20 днів тому

    I had been waiting for this tutorial for a long time, and today I finally got it!!! Thank you so much sir..Your explanations are so clear and easy to understand.

  • @saurabhpuran
    @saurabhpuran 22 дні тому

    Love your content sir

  • @honesmartyy
    @honesmartyy 22 дні тому

    Nice video lots of learning 🎉🎉

  • @hamaadafzal2490
    @hamaadafzal2490 22 дні тому +2

    Hitesh sir kindly make a complete react js course

  • @vishwanath-ts
    @vishwanath-ts 21 день тому

    Correct time, I was searching for the best Git tutorial.

  • @manishdhariwal543
    @manishdhariwal543 22 дні тому

    Great video ❤

  • @kyawlin4812
    @kyawlin4812 15 днів тому

    Very very very nice tutorial. Thank you free code camp ❤

  • @intuitivej9327
    @intuitivej9327 14 днів тому

    fantastic explanation... wow;;;

  • @CMMubeen
    @CMMubeen 21 день тому

    So amazing video ❤

  • @__singhayush__
    @__singhayush__ 22 дні тому

    One legend with another 🔥

  • @ShivajiPrateeksha
    @ShivajiPrateeksha 20 днів тому +1

    How do you reduce the git size, when repo goes more than 3gb

    • @kaushik.aryan04
      @kaushik.aryan04 9 днів тому

      you might have included the libaries with the push do not include node modules or env / venv folder in python. Also you should try to not include static files other than that it would be hard to reach 3 gb only based on code files.

  • @ankitjain171
    @ankitjain171 22 дні тому

    Good knowledge meets goods audience

  • @ruggymango
    @ruggymango 22 дні тому

    So helpful!

  • @babulalsk8363
    @babulalsk8363 22 дні тому

    Hye sir I am so happy to see u here

  • @h20-vi6zd
    @h20-vi6zd 21 день тому

    The way he teaches....... ❤

  • @usports2025
    @usports2025 22 дні тому

    amazing thank you very much

  • @Rahmanullah-qy7rd
    @Rahmanullah-qy7rd 21 день тому

    It's really amazing ❤❤❤❤❤❤

  • @MohammedHasmi577
    @MohammedHasmi577 22 дні тому

    Jaha bhi jaoge hitesh sir ko hi paoge big fan of hitesh sir ❤❤

  • @thetopntop
    @thetopntop 21 день тому +1

    Hitesh Sir Lover Attendance ❤

  • @kissslayyy
    @kissslayyy 22 дні тому +1

    Chai aur code gang rise up

  • @keerthiraj3498
    @keerthiraj3498 22 дні тому

    Hitesh Sir everywhere❤

  • @varenya4629
    @varenya4629 22 дні тому

    Hitesh is what we want ❤🎉

  • @TheRikyregna
    @TheRikyregna 17 днів тому

    great video, thx

  • @KoushikDas2005
    @KoushikDas2005 22 дні тому +1

    Chai Aur Code ❤❤❤❤❤

  • @arnd12940
    @arnd12940 21 день тому

    Hitesh sir is the great 🎉🎉🎉

  • @nothing-dz2ub
    @nothing-dz2ub 21 день тому

    Thank you ❤