How to connect an existing project in RStudio with (Git) GitHub

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

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

  • @juliangrandvallet5359
    @juliangrandvallet5359 5 дней назад

    This was really helpful, thanks!

    • @ThanuChami
      @ThanuChami  5 дней назад

      You are most welcome 😊

  • @thisarajayasinghe9252
    @thisarajayasinghe9252 2 года назад +1

    Thank you. New sub here from a fellow Sri Lankan.

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

    Nice work 💪

  • @Yutvchanel
    @Yutvchanel 2 года назад

    Awesome work thanu❤️

  • @SomaMondal-sv5mj
    @SomaMondal-sv5mj 2 года назад

    Nice informative video, really like it

  • @jasonalexander4252
    @jasonalexander4252 2 года назад

    Great one. Very informative 👍

  • @ranjanigalagedara7203
    @ranjanigalagedara7203 2 года назад

    Good job duwa 👍

  • @viraltwist5496
    @viraltwist5496 2 года назад

    Good job

  • @deeptiarora9299
    @deeptiarora9299 2 года назад

    very informative

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

    This is an elegant feature btw. I got an issue: I can't even staged a file folder to commit in R project to git

    • @ThanuChami
      @ThanuChami  11 месяцев назад +2

      May be the following links would help you.
      www.nobledesktop.com/learn/git/stage-commit-files#:~:text='%2C%20to%20stage%20a%20specific%20file,%2Dr%20%5Bfolderpath%5D'%20respectively.
      stackoverflow.com/questions/24167676/cant-stage-folder-for-commit-with-git-add-or-git-add-u

  • @thaylastar
    @thaylastar 9 месяцев назад +1

    thanks a lot

    • @ThanuChami
      @ThanuChami  9 месяцев назад

      You are most welcome 😀 and thanks a lot for watching the video

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

    What's the difference between a personal token and an SSH key?

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

      Thanks for the question. Actually, Personal access tokens (PAT) and SSH keys serve different purposes for authentication in GitHub. PATs are used for HTTPS authentication and act as a replacement for your GitHub password when performing Git operations or accessing the API. You enter the token when prompted for a username and password, and it can be included in the URL or stored in a credential manager. PATs allow for fine-grained access control, as you can set specific permissions for them. On the other hand, SSH keys are used for authenticating over SSH, providing a more secure and convenient method for tasks like cloning repositories, pushing, and pulling changes. After generating an SSH key pair, you add the public key to your GitHub account and can then use the SSH URL for Git operations without needing to enter a password. Overall, use PATs for HTTPS connections and SSH keys for SSH connections, with each offering different methods and security benefits. I hope this helps clarify the differences.😊