Git For Beginners 2023

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 202

  • @developerscentre
    @developerscentre Рік тому +62

    The only channel I trust for any software development content. Thank you for sharing!

  • @chhavimanichoubey9437
    @chhavimanichoubey9437 10 місяців тому +7

    This video is more than enough for getting started with Git or getting familiar with it at least to then start learning version control in detail.

  • @poojithGubbala
    @poojithGubbala 10 місяців тому +7

    Naa internship projects ki, final year projects ki...ipudu job lo training phase ki kuda mimalne follow avthunna sir.. thanks for free tutorials😇

  • @SriramDinesh
    @SriramDinesh Рік тому +1

    Thanks!

  • @deogenesabejuela7016
    @deogenesabejuela7016 Рік тому +8

    Wow, I learned a lot in just 2 hours. very clear and informative. The best git tutorial so far. Thank you, sir. I am now a follower👌👍

  • @chandrashekhar9693
    @chandrashekhar9693 Рік тому +6

    Thanks a lot Mr. Naveen. Your explanation is excellent. I done practice along with your training session.

  • @manivannanthirugnanam4599
    @manivannanthirugnanam4599 Рік тому +6

    Thank you so much for the detailed explanation.

  • @semilife
    @semilife Рік тому +2

    Thanks Navin for a very comprehensive and practical look at how git works.

  • @tunanshvatsa5998
    @tunanshvatsa5998 10 місяців тому +3

    I have watched this topic from many educators but nothing can match this. Thank you sir
    🙏

  • @jayanthdhavala131
    @jayanthdhavala131 9 місяців тому +1

    thank you for this tutorial. wonderful experience learning from you.

  • @prashanthreddy6936
    @prashanthreddy6936 10 місяців тому

    Superb playlist about git & github i learned from scratch thanks naveen sir.

  • @naveenrajukopparthi3046
    @naveenrajukopparthi3046 Рік тому +9

    Thank you. Please do continuation video about merge conflicts.

  • @sohamtanpathak9067
    @sohamtanpathak9067 5 місяців тому

    Very informative. One of the best videos!!

  • @sandeepnv3045
    @sandeepnv3045 10 місяців тому

    Great work...! Thank you for doing these type of tutorials. Keep doing and help us!

  • @MayurAgrawal-cg9zg
    @MayurAgrawal-cg9zg 8 місяців тому

    Sir, i am learning from your training, its very clear and understanding.

  • @garbi..
    @garbi.. Рік тому +1

    Thanks for the tutorial . It helped me understand Git better

  • @juliuschimaobi
    @juliuschimaobi 10 місяців тому

    Best tutorial on git; ever watched

  • @mauricelokuju
    @mauricelokuju 6 місяців тому

    My mentor ever love the content and clear and easy explanation

  • @rvr_motivations
    @rvr_motivations Рік тому +1

    26:10 start
    git init - b main
    git add filename (To put file into staging area)
    git commit -m "My first commit"
    git commit -a -m "my third commit"(it skips adding into stage area)

    • @mandarapriya3530
      @mandarapriya3530 10 місяців тому

      i couldn't change the master to main from my command line

    • @rvr_motivations
      @rvr_motivations 10 місяців тому

      @@mandarapriya3530 Sorry I also not watched the whole video
      Copy your code and paste in chatgpt and mention your problem. You will definitely get the answer.👍

  • @dwpk20
    @dwpk20 Рік тому +9

    This is one of the most helpful detailed and well explained Git tutorials I've seen. Thank you for doing this! I felt it ended very abruptly though as if there was a continunation :D
    One question though. let's say you have commited 2 times and have pushed to remote. But now I want to roll back to commit 1. I use git checkout , that's fine, but how do I make my main branch also go back to this first commit so that I can push to remove and make my second commit disappear?

    • @lokeshdohare4872
      @lokeshdohare4872 5 місяців тому

      Firstly, Identify the commit ID of the first commit you want to roll back to using
      git log
      Reset the main branch to the desired commit:
      git reset --hard
      Force push the changes to the remote repository:
      git push origin main --force

  • @balakrishna8853
    @balakrishna8853 6 місяців тому

    Thank you so much for such a wonderful explanation !!🤗

  • @abhiadam1985
    @abhiadam1985 Рік тому

    HI one step missing while pushing repo remotely at 1:09:40 that is to do "git init" incase its a fresh folder created. Thanks.

  • @sushmitakumari8252
    @sushmitakumari8252 Рік тому +1

    thanks for the course its outstanding

  • @Whatnewp1
    @Whatnewp1 5 місяців тому +3

    your english speaking style is excelent ,i can esaly understand with us

  • @jayashreep4926
    @jayashreep4926 Рік тому +1

    Thank you. Good and clear explanation.

  • @anilsindhu4847
    @anilsindhu4847 Місяць тому

    Always love your clear cut explanation, very effective video, loved it!

  • @srinivasreddypallerla6871
    @srinivasreddypallerla6871 10 місяців тому

    Dear Naveen Reddy, I did learn a lot from your talk. It was comprehensive, clear and delivered very well. Thank you sir.

  • @maheshdgaikwad427
    @maheshdgaikwad427 Рік тому +3

    😃Thank you so much sir and plz if possible plz upload this video in hindi also ❤

  • @priyankachenduluru7547
    @priyankachenduluru7547 10 місяців тому +1

    ((1:06:20 at there if i enter (ls -a) if getting an error like : Get-ChildItem : Parrameter cannot be processed because the parameter name 'a' is ambiguous....... )) please tell me how to rectify it...

    • @narinarendra7087
      @narinarendra7087 9 місяців тому

      I am also facing this issue Please help me correct it.

  • @bilalbeny4172
    @bilalbeny4172 Рік тому +1

    thank you so much for sharing this video👍

  • @Indian-fv8kl
    @Indian-fv8kl Рік тому

    you are rally god to us, thank u soo much for your amazing work sir. love from Germany❤

  • @SaiPhaniRam
    @SaiPhaniRam 11 місяців тому

    @Telusko
    Hello Navin, I have a question:
    When we created the file "UserService.txt" at 1:48:29, we are creating the file in the working directory right ? How come, the moment we switch the branches, it is getting disappeared?
    If it were the case of content in the file, it makes sense. But I would like to know how the working directory file structure is getting changed.
    Please help me in understanding this.

  • @sindhud6895
    @sindhud6895 Рік тому +1

    Loved with tutorial 💌

  • @mahmodi5timetolearn
    @mahmodi5timetolearn Рік тому +2

    Only legends can do such amazing tutorials thanks Naveen

  • @rd-tk6js
    @rd-tk6js 10 місяців тому

    very well explained, thanks !

  • @juliestudy1475
    @juliestudy1475 Рік тому +2

    A very good tutorial! Thank you. It's a shame that 'branch conflict' is not included.
    It's a mystery (and confusing) that in the middle of the first project in vs code, suddenly a 2nd project is created using terminal and then opened the 2nd project in vs code and abandon the 1st project altogether. Why?

  • @bidyarthiwb1767
    @bidyarthiwb1767 2 місяці тому

    You are such a good teacher. Thank you.

  • @amit_2428-b8c
    @amit_2428-b8c 7 місяців тому +2

    at 34:36, Can someone please tell which command we need to use to go back?

    • @amit_2428-b8c
      @amit_2428-b8c 7 місяців тому +4

      found it, we can use ‘q’ to go back

  • @parthaprotim0014
    @parthaprotim0014 Рік тому +1

    As always , Naveen Sir never disappoints.

  • @Anusha463
    @Anusha463 6 місяців тому

    You are a god sir 🙏🙏.
    Thank you so much

  • @surajnegi2114
    @surajnegi2114 Рік тому

    i love the way you teach.

  • @rahuljmd
    @rahuljmd 6 місяців тому

    Thanks sir, really loved it

  • @TalhaTabrez
    @TalhaTabrez Рік тому +1

    thank you so much!!

  • @scoffer2150
    @scoffer2150 Рік тому

    Thank you so much sir for this course. Can you also provide me with the web development courses you've made.

  • @DeepikaDecodes
    @DeepikaDecodes Рік тому +4

    Awesome ❤

  • @dharanishsomu-k1k
    @dharanishsomu-k1k Рік тому +2

    vera level bro

  • @Netpilation
    @Netpilation 7 місяців тому

    his course >>>>>>> all courses on yt

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

    Hi sir you are using vs code so first you are save in vs code but how you are saving vs code so there only I am strucking could you please help me

  • @Setche2023
    @Setche2023 11 місяців тому

    I love you so muuuuuuuuuch. You're the best

  • @dc_patel43
    @dc_patel43 Рік тому

    What do we mention instead of passphrase ? (Duration: 1:07:00)

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

    the entire vido took me 2:30 hrs :) but now i can say i know basic to mediam git and github

  • @BhimUpadhaya-c3w
    @BhimUpadhaya-c3w 2 місяці тому

    Love your style sir❤

  • @manjunathshirageri2945
    @manjunathshirageri2945 11 місяців тому +2

    Hi your contents are good but its too lengthy. Better if you talk to the point. For Ex - at 22.06 you started saying what is "working directory" but suddenly you mentioned " doesn't matter" . I feel u sudden jump from KEY WORDS to ANOTHER KEY WORD. instead of that dont bring those in discussion. So keep simple and shorter.
    from 22:20 to 25:00 u started saying " staging repo and commit " but after 3-4 min also u mention will discuss that later . so here you are talking of things which are not required at that point of time.
    this you can avoid by having key notes what to discuss and when to discuss. this even you reduce your video duration.

  • @tayoshoyoye1093
    @tayoshoyoye1093 5 місяців тому

    Well explained love this man

  • @TSW_TheSilenceWithin
    @TSW_TheSilenceWithin 26 днів тому

    Few important topics like branch merge conflicts and stash are missing in this playlist. For new learner I'll suggest to watch chai aur code lecture on git and GitHub. Thanks

  • @flames_tech
    @flames_tech 11 місяців тому +2

    Sir please suggest me your videos in sequence so that I can learn Java full stack, As I'm getting trained for the same from a institute, But I need your videos as better reference...

    • @flames_tech
      @flames_tech 11 місяців тому +1

      Anyone, can you suggest me?

    • @davidhusted817
      @davidhusted817 10 місяців тому +1

      You can get from anywhere a roadmap and you devided into wections and learn it in order

  • @sourabhmittal823
    @sourabhmittal823 Рік тому

    great content !!

  • @intergalacticweatherman
    @intergalacticweatherman 7 місяців тому

    preciate this

  • @sathwikcm7
    @sathwikcm7 Рік тому

    i wish the whole thing was taught on a wondows machine since i don't even know how to use the terminal properly , i faced some difficulties during this course , but anyway sir thankyou for the video and sharing your knowledge i'm grateful for you.

    • @anisha7909
      @anisha7909 Рік тому +1

      You can use powershell instead

  • @u_nknown4O4
    @u_nknown4O4 4 місяці тому

    Too much helpful. 🎉

  • @RishabhTheHertBrekr
    @RishabhTheHertBrekr Рік тому +1

    Thx sir❤😊

  • @sam36830
    @sam36830 Рік тому +2

    Happy Teacher's Day Naveen Sir🏃‍♂️🏃‍♀️🏃‍♂️🏃‍♀️🏃‍♂️🏃‍♀️🏃‍♀️🏃‍♂️🌳🪴🪔🏆
    Radhe Radhe 🌳 🌳 🌳 🌳 🌳

  • @shashikumar-rw1zc
    @shashikumar-rw1zc 11 місяців тому +4

    at 51.59 when you deleted creds.txt u directly committed and didn't use -a to skip staging also

    • @Krishwithniece
      @Krishwithniece 2 місяці тому +1

      But those two files are in staging area No need to provide -a.. In case do some changes then we can provide -a to convert staging area

  • @lavanyam3956
    @lavanyam3956 Рік тому

    Hi sir, your videos are really awesome
    Could you please upload for sax parser for Excel in java

  • @COURSES_ONCAPZ
    @COURSES_ONCAPZ Рік тому

    Thank you sir ❤

  • @nadetdevfullstack7041
    @nadetdevfullstack7041 Рік тому

    Excellent

  • @chandanaganguru6257
    @chandanaganguru6257 3 місяці тому

    at 17:50 when i am trying to give the command (git config) it is showing no such action specified what do i do can someone help me

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

      Broo!! You got any solution for this because I also got same issue

  • @Spider-Man_67
    @Spider-Man_67 Рік тому +4

    Sir, why did you deleted the video & uploaded it again?

  • @Brawlstriker89
    @Brawlstriker89 4 місяці тому

    When I do a project I do not make updates to it. I do it until it’s finished. And that’s that… so do I need to use GIT if I’m a solo dev who doesn’t do versions? No.

  • @shubhanginivadkar
    @shubhanginivadkar Рік тому

    Happy Teacher's Day Sir

  • @Name-yu6ux
    @Name-yu6ux Рік тому

    Yoo telusko my teacher posted a video!!

  • @gudurkirankumar5990
    @gudurkirankumar5990 Рік тому +1

    Hi Guruji, Few commands are not working. As well as " ssh -keygen -o" is also not working in VS. Please correct me if am wrong or else suggest me path for further steps.
    Thanks in advance.

  • @likithr.n9692
    @likithr.n9692 10 місяців тому

    Super explanation.
    Very comprehensive and detailed

  • @jebezoswald5975
    @jebezoswald5975 Рік тому

    Happy teachers day sir ❣

  • @ezekiellinc2732
    @ezekiellinc2732 2 місяці тому

    It cannot be comprehensive more than this. Thank you so much sir.

  • @ratanrathod7
    @ratanrathod7 Рік тому

    thank you ♥

  • @sanyamjain4777
    @sanyamjain4777 Рік тому +1

    What is the need to change branch name from master to main?

  • @Lifestylekolkata-ph2xt
    @Lifestylekolkata-ph2xt 3 місяці тому

    Hello Sir. Thnak you for the video. When I am doing git init -b main getting error:
    error: unknown switch `b'
    usage: git init [-q | --quiet] [--bare] [--template=] [--shared[=]] []
    --template
    directory from which templates will be used
    --bare create a bare repository
    --shared[=]
    specify that the git repository is to be shared amongst several users
    -q, --quiet be quiet
    --separate-git-dir
    separate git dir from working tree

  • @alokrawatmemories
    @alokrawatmemories 4 місяці тому

    Superb..❤

  • @KhalequzzamanAnsary
    @KhalequzzamanAnsary Місяць тому

    Thank you sir. ❣

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

    ssh-kegen -o is not working? is there any other command
    And for ls-a alternative is ls -force

  • @karimmulla5452
    @karimmulla5452 Рік тому +1

    Wish you a Happy Teacher's Day Navin sir🎉❤

  • @sakshiwadhwa8226
    @sakshiwadhwa8226 11 місяців тому

    can you please post some aws projects from scratch for beginners to write those on resume

  • @Malleswari-u5v
    @Malleswari-u5v 14 днів тому

    hi Navin,can you teach online classess on python,datascience?
    plz let me know

  • @josephif
    @josephif 2 місяці тому

    is git remote add link similar to git add on a local repo or local version control systems staged area

  • @mingukkie5008
    @mingukkie5008 Рік тому

    57:54 how do you cancle it???

  • @mickey-bz5cf
    @mickey-bz5cf Рік тому +1

    Did he upload again, or it's a dega vu

  • @rangoliatti4890
    @rangoliatti4890 5 місяців тому

    from git repository i cannot understand all of sudden he opened terminal and did some commands how do i learn them?

  • @milankbudha
    @milankbudha Рік тому

    are you using benq monitor for this tutorial?? plz reply sir

  • @maheshb1471
    @maheshb1471 10 місяців тому

    No one can teach us like you do, a person from non IT background also can understand

  • @nishantverma2966
    @nishantverma2966 Рік тому +2

    I can't see any file inside my first project folder while deleting the .git file is there any way to find that

    • @Name_is_Tommy
      @Name_is_Tommy 10 місяців тому

      Same did you find any answer

  • @sangyt6915
    @sangyt6915 9 місяців тому +14

    Thank you Navin sir... And plzz do not upload videos as paid version... 😢😢😢

    • @Factualvibess
      @Factualvibess 6 місяців тому

      He also want to live bro

    • @disturbed-af
      @disturbed-af 6 місяців тому

      Lmfao, then you pay salary for him

    • @Saklen_S
      @Saklen_S 2 місяці тому

      @Factualvibess Bro he will get from UA-cam and also from his courses on his sites

  • @duttepallaramswaroop4978
    @duttepallaramswaroop4978 5 місяців тому

    git push origin main:main
    error: remote-curl: error reading command stream from git
    what is this error iam unable to push from vs code

  • @mohitsonwane804
    @mohitsonwane804 4 місяці тому

    It was a good review for me...

  • @pujaladevi6277
    @pujaladevi6277 8 місяців тому

    in these year download the git but it does'nt support the notepad editor what can i use it for

  • @musicvibes7174
    @musicvibes7174 11 місяців тому

    Hey I don't know what should I have press to come back from the end after the log,can anyone help me with that 😅

  • @brianwaweru7754
    @brianwaweru7754 Рік тому

    thanks

  • @keerthanaboosa5905
    @keerthanaboosa5905 Рік тому

    Why we should not work on master branch?

  • @tuongphuongly298
    @tuongphuongly298 Рік тому

    slick back

  • @fullstack-insights
    @fullstack-insights 23 дні тому

    Sit back and enjoy❤❤