Git and GitHub REPO Setup for Beginners - Crash Course on Linux

Поделиться
HTML-код
  • Опубликовано: 6 окт 2024
  • Let's learn how to setup a GitHub repo and use Git Tools to manage our repository online. Github is a great repo hosting platform and git can help you keep track of code changes efficiently. These are tools that EVERY developer should learn.
    My Linux Cheat Sheet and 25 Page Checklist here:
    📚 learn.savvynik...
    Share this free tool and support Small RUclipsrs
    editbulk.com
    (I made this tool to help creators)
    Useful Links/Commands:
    Discord Link - / discord
    Github - github.com
    #git #github #linux

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

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

    I made a free tool to help creators (share it) - editbulk.com

  • @VEKTOR_87
    @VEKTOR_87 Год назад +7

    Thank you for this amazing course :)

    • @SavvyNik
      @SavvyNik  Год назад

      Glad you enjoyed it Vektor :)

  • @johnericsonreyes4261
    @johnericsonreyes4261 3 месяца назад +1

    I like how you demonstrate it. I hope you'll have the same tutorials for Docker

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

    thank you so much this solved all my questions

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

      Love to hear it

  • @guilherme5094
    @guilherme5094 Год назад +3

    Thanks👍!!

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

    very useful video, thanks for the help

  • @Raja-oi7xv
    @Raja-oi7xv Год назад +3

    Thankyou so much 👌👍❣️

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

      Np, Glad you liked the vid

  • @charanmalampati3421
    @charanmalampati3421 3 месяца назад +1

    Thank you so much!

  • @nikoto11
    @nikoto11 10 месяцев назад +1

    Hey Nik, thanks for the video it was very useful for understanding the basics. However I am still a bit confused on how would I work with multiple projects/repositorys. For instance do I need to execute the "git remote set-url origin" for each project and if I did a "git commit" how do I specify for which project to commit. It would be much appreciated if you could help me out.

    • @SavvyNik
      @SavvyNik  10 месяцев назад

      Something like this:
      Change remote origin:
      git remote set-url origin
      Navigate to project:
      cd /path/to/your/project
      Check Status:
      git status
      Add files as necessary and commit
      git add ... # Add specific files
      git add . # Add all changes
      git commit -m "Your commit message"
      And once you're ready to move on to another project you again start from beginning using remote origin

  • @reuseful2839
    @reuseful2839 Год назад

    without the Git Credential Manager?