Git And GitHub Full Tutorial | Complete Git And GitHub Tutorial For Beginners

Поделиться
HTML-код
  • Опубликовано: 27 сен 2023
  • Git And GitHub Full Tutorial | Complete Git And GitHub Tutorial For Beginners
    #GitHub #WebDevelopment #GreatStack
    ❤️ SUBSCRIBE: goo.gl/tTFmPb
    In this single tutorial for you will learn everything about Git and GitHub. you will learn the the Git commands with example. And we will learn how to download projects from GitHub to local development environment, How to upload your project code on GitHub, Fork GitHub repository.
    I will also teach you how you can host your website online for free. GitHub provides free web hosting on GitHub pages where you can publish your website online. I will publish my tic tac toe game website on GitHub pages.
    Learn to Make tic tac toe game using React JS:
    • How To Make Tic Tac To...
    Learn to make Weather app using React JS:
    • How To Create Weather ...
    JavaScript complete tutorials for beginners:
    👉 • What Is JavaScript | I...
    JavaScript Projects for beginners:
    👉 • How To Make Weather Ap...
    -------------------------------------
    Connect with me:
    👉 linktr.ee/iamavinashkr
    Connect with GreatStack:
    Instagram: / greatstackdev
    Twitter: / greatstackdev
    Facebook: / greatstack

Комментарии • 30

  • @jayasan1649
    @jayasan1649 7 месяцев назад +1

    you have no idea how much you have helped me,love from sri lanka

  • @jideoforigbelina6957
    @jideoforigbelina6957 7 месяцев назад

    wow... thanks for this. This is timely.

  • @capK29
    @capK29 2 месяца назад +1

    one of the best, honestly the perfect and complete GitHub tutorial out there . Thank u ❤

  • @drexk6569
    @drexk6569 7 месяцев назад +1

    Thank you so much❤❤ I owe you a lot from the videos you dedicated, please dedicate video on react course

  • @navi2710
    @navi2710 5 месяцев назад +2

    You are a wonderful and amazing teacher. Thank you so much for the videos. I have learned a lot from your and cannot expresshow greatful I feel for all of the hard work and effort you have put in to create these videos.

  • @djfago6240
    @djfago6240 7 месяцев назад

    Very intuitive. Thank you sir

  • @selvapandi1362
    @selvapandi1362 7 месяцев назад

    at the First time i liked your video sir, so much helpful for the 30min lesson thankyou sir, keep it up , keep rock sir

  • @hruthik7478
    @hruthik7478 7 месяцев назад

    Thank you very much you have made my work easy

  • @CodingW3
    @CodingW3 7 месяцев назад +1

    One more subscriber! ❤

  • @amitbhoir2275
    @amitbhoir2275 7 месяцев назад

    Very helpfull

  • @kirantechnophile7852
    @kirantechnophile7852 7 месяцев назад +2

    I have multiple projects wrapped on a directory inside of a repository. Can I deploy them using GitHub pages saperetely as different projects in a single repository?
    If it's possible please guide me some steps.

  • @nemanjasavic9859
    @nemanjasavic9859 3 месяца назад

    Great video, thank you very much!

  • @muhammedshahiduddin5904
    @muhammedshahiduddin5904 7 месяцев назад

    you are always great

  • @cheens5349
    @cheens5349 7 месяцев назад

    good one!

  • @ajiteshmishra0005
    @ajiteshmishra0005 16 дней назад

    Please create a video on Git and GitHub using command line for deploying any React Project.

  • @corebankingsolutions
    @corebankingsolutions 7 месяцев назад

    can you pls tell us how to download.... weather app source code which drag and drop in the repostory.

  • @ajiteshmishra0005
    @ajiteshmishra0005 16 дней назад

    If we make changes in our local code or any component of React Application then after making changes what commands we have to run so that it can also reflect in GitHub pages and created website?

  • @shreya3378
    @shreya3378 7 месяцев назад

    I have a problem while using git. I can't use password for git. So I am using tocken instead of password. Is it okay?I am using ubuntu.

  • @alishaansari100
    @alishaansari100 7 месяцев назад

    Can you please upload a video for chatbot please

  • @jackal_sniper_scary
    @jackal_sniper_scary 2 месяца назад

    thankyou so much sir

  • @unknown_km
    @unknown_km 7 месяцев назад

    sir i have a problem in downloading git. it shows me in downloading time "need authorization" and require username and password in the time of downloading. please solve this problem

  • @kent_calvin
    @kent_calvin 7 месяцев назад

    Nice video but GitHub desktop simplifies all this

  • @enesaliev
    @enesaliev 7 месяцев назад

    Instead of writing Git command can we drag and drop the folders.

    • @one4all42
      @one4all42 7 месяцев назад +3

      It works fine untill you want to upload 100+ files, it won't allow it all at once

  • @shreya3378
    @shreya3378 7 месяцев назад

    I have a problem while using git. I can't use password for git. So I am using tocken instead of password. Is it okay?

  • @MounikaChandana
    @MounikaChandana 7 месяцев назад +1

    what is the use of z-index, and position: relative , absolute

    • @Alpha_TJ
      @Alpha_TJ 6 месяцев назад +1

      z index helps in stacking of elements on a web page. Say you have 3 div's with color red blue and green and you set z index of green div 100, it will cover/hide the red div and blue div in a way that green is on top of the layer and rest are below.
      Position on the other side helps us to change the position of element from one side to another.
      Say i have p tag and i want to push it to the right side of the web page, i will use positioning property of css.
      Let's understand absolute and relative concepts.
      Absolute when used helps us to move an element anywhere in a web page, you can move that element to right, left, bottom or down, no restriction.
      Relative on the other side is kind of restricted.
      for example, you have a section and inside that section, you have 3 p tags.
      Now you set the position property of relative to section tag and you want to change the position of p tags.
      what now will happen is, the p tags will move but relative to the section tag only. In short they will move within the imaginary boundary of section tag. Think of it as a Father who has said don't go outside the park or on road. That is the what relative elements are, they are like father and the children tags "here p tags" are kids, they cannot go outside the park" here outside the boundary of section tag".
      Hope i made it clear, any suggestion would be appreciated.

    • @AliLearning
      @AliLearning Месяц назад

      @@Alpha_TJ
      👍👍👍