"Understanding Git Architecture and Mastering Git with GitHub in Kannada | neeltechjunction"

Поделиться
HTML-код
  • Опубликовано: 2 фев 2025

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

  • @sandeep89110
    @sandeep89110 Год назад +2

    sir very nice explanation,u have explained minute points ,tech aspects in detail,so that even a person who is listening for the first time,will get an idea of what is GIT,appericatated sir Thank you

  • @shreedharpoojari
    @shreedharpoojari 11 месяцев назад +1

    very good explaination sir

  • @santoshpr458
    @santoshpr458 21 день назад

    Subscribed your channel
    Please do devops related videos regularly 🎉😊

  • @prakashpatil4586
    @prakashpatil4586 11 месяцев назад

    very very informative brother. good keep going .....

    • @neeltechjunction
      @neeltechjunction  11 месяцев назад

      Thank you - kindly do share with our kannada peoples 😊😊😊😊😊

  • @savitrak.c.8535
    @savitrak.c.8535 Год назад +2

    Hello sir, excellent explanation, you teach the things which matters like why? how? when? what? … its amazing!! I have been studying this course from past few months, I gone through many videos to understand the topics in a better way, finally I found it 😊Thank you so much.

  • @sandeep89110
    @sandeep89110 Год назад +1

    sir what is the use of creating username ,email in git globally

    • @prakashpatil4586
      @prakashpatil4586 11 месяцев назад

      git commit -m "xyz"
      basically commit holds the information of every changes you send from staging area to local repository
      information likely
      1.who change the code (name,email) ** required to set before commit
      2.time stamp (default)
      3.commit message (xyz) provided during commit
      4.commit id (automatically cread by git)
      so before commit you need to tell git who you are so you should set globally!