How to fix github permission denied publickey fatal could not read from remote repository?

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ธ.ค. 2024

ความคิดเห็น •

  • @richardlew3667
    @richardlew3667 11 หลายเดือนก่อน +4

    Thank you so much! I noticed I often have to repeat this method every time I create any new directories and projects. Is there a universal fix for this?

    • @anandsinha2289
      @anandsinha2289 8 หลายเดือนก่อน

      same problem bro do you find it ?

    • @richardlew3667
      @richardlew3667 8 หลายเดือนก่อน

      @@anandsinha2289 Unfortunately, not a permanent solution. I did find an alternative where I simply upload or download the files instead.

  • @alkhemist6631
    @alkhemist6631 3 ปีที่แล้ว +1

    Your public key has been saved in /c/Users/Avatar/.ssh/id_rsa.pub cut when I ran cat Your public key has been saved in /c/Users/Avatar/.ssh/id_rsa.pub it tells me No such file or directory. Why is that happening?

    • @therealvanshita
      @therealvanshita 3 ปีที่แล้ว

      Sme prblm

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Check by running ls -lart /c/Users/Avatar/.ssh/ and see how many files are there.
      Also how did you generated the keys i would like to know?

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Check by running ls -lart /c/Users/Avatar/.ssh/ and see how many files are there.
      Also how did you generated the keys i would like to know?

  • @Nikhil-td4yj
    @Nikhil-td4yj ปีที่แล้ว +1

    thank you, a lot. I search a solution for this from 3 days at last, I find this video and in some minutes I solve my problem thanks again. always be kindful.

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You're welcome!

  • @brunacastro4750
    @brunacastro4750 2 ปีที่แล้ว +5

    I was not going to make a comment, but I was so freaking lost and your video is just so easy to follow. I read many articles, lost almost an hour just to find this video and fix everything under 10 mins lol Thank you so much!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Haha it happens with everyone of us

  • @CocoAgar
    @CocoAgar 2 ปีที่แล้ว +1

    Thank you very much friend, I have reviewed other sites and videos and they did not help me with the problem, you are the best

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad I could help

  • @daveyu1915
    @daveyu1915 3 ปีที่แล้ว +6

    Thank you so much! I was stuck cloning my repository into another computer and your video is the clearest explanation I found. Amazing video :)

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      I am glad that it helped you

  • @diniiantares
    @diniiantares 2 ปีที่แล้ว

    Had to login from my personla account after watching the video for a work problem. Didn't fix my problem but the video is just so well made, big thanks for videos like this.

  • @neeners_keem
    @neeners_keem 3 ปีที่แล้ว +1

    Oh my goodness, I cannot believe this worked - thank you so much! I was trying to learn git and got stuck with the cloning process!

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad it helped!

  • @4ram16
    @4ram16 3 ปีที่แล้ว +2

    That's great for cloning repos from one GitHub account from a computer with one SSH key. But how can I configure Git to clone or use git ls-remote for another GitHub account using another SSH key?

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Well you need to generate two different ssh keys. Here are the steps which i would follow to achieve it -
      1. Generate two ssh keys using - ssh-keygen -t rsa -C "your_email@youremail.com"
      2. Let's assume you have two keys with the name - mykey1, mykey2
      3. Add bot the keys
      $ ssh-add ~/.ssh/mykey1
      $ ssh-add ~/.ssh/mykey2
      4. Update your ssh cofig
      cd ~/.ssh/
      touch config
      subl -a config
      5. add the following into the config file
      #activehacker account
      Host github.com-repo1
      HostName github.com
      User git
      IdentityFile ~/.ssh/mykey1
      #jexchan account
      Host github.com-repo2
      HostName github.com
      User git
      IdentityFile ~/.ssh/mykey2
      6. Then you can clone both the repo as per your need
      //Rahul

  • @juhiimi05
    @juhiimi05 ปีที่แล้ว +1

    Very nice and simple(much simpler then other online guides), thank you sir!

  • @haidarkanaan756
    @haidarkanaan756 ปีที่แล้ว

    لك اسدددددددددد اسد بديني اسد . .. وحش حقيقي .. شكرا كتير صديقي الهندي 🤩🤩🤩😍😍

  • @jacquelingonza9685
    @jacquelingonza9685 2 ปีที่แล้ว +2

    didn't ask me a user name or password.

  • @dominicpakenham1453
    @dominicpakenham1453 2 ปีที่แล้ว +1

    Thanks man! This was by far the simplest breakdown of the issue that I found. Upmarked!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Thanks man sometimes I also struggle with the simple solution. But glad it worked for you

  • @MichaelSmith-fg8xh
    @MichaelSmith-fg8xh 3 ปีที่แล้ว +2

    I got the same error by using non-default naming for the ssh key e.g. .../.ssh/mykey.pub. I fixed it by generating a new key and accepting the default name.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว +1

      yeah default name works in most of the cases

    • @amankadakuntla2876
      @amankadakuntla2876 3 ปีที่แล้ว

      I did the same and finally got resolved. But still I have a doubt why that didn't work? Any specific reason?

    • @MichaelSmith-fg8xh
      @MichaelSmith-fg8xh 3 ปีที่แล้ว +1

      @@amankadakuntla2876 I ran a debug and it tried to use all the default key names until one worked

  • @glushk1na
    @glushk1na 2 ปีที่แล้ว +1

    it doesnt work now. any ideas?
    remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      You should try this - th-cam.com/video/Ff66TqiaIto/w-d-xo.html

  • @zameerahmed1775
    @zameerahmed1775 2 ปีที่แล้ว

    Thank's a ton ............ Rahul.
    I am just a newbie to git....... U made the key generation process so simple, above all U have emphazised the importance of key generation.
    God bless you & enhance ur knowledge.
    Cheers ...........

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Keep learning and enjoy the content

  • @moadan4934
    @moadan4934 ปีที่แล้ว

    thnks man your save meh from reading all those document .
    i was terified in weeks .......but eventually found your vid ..........

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      Glad I could help

  • @LightYagami406
    @LightYagami406 ปีที่แล้ว

    so sir do we have to create new SSH keys every time we are pushing a new repo in github?

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      No it is only one time setup

    • @LightYagami406
      @LightYagami406 ปีที่แล้ว

      @@RahulWagh but when I tried to upload my second project in another repo, the bash gave me an error that I don't have the permission

  • @SurattuDurgaprasad
    @SurattuDurgaprasad 2 ปีที่แล้ว

    Hi Rahul,
    I have requirement that to set up a git server in windows machine and I want use this repo in another windows (client) machine through SSH here I don't want to use github or gitlab. Is it possible?
    Could you please help me with this?
    Thankyou

  • @sriabishek1236
    @sriabishek1236 3 ปีที่แล้ว

    Brother when I typed cat and pasted the path it's like "Get-content : A positional parameter cannot be found that accepts argument" it's says like its some invalid argument

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Can you share your exact command which you were trying to execute?

  • @viveksrivastava6070
    @viveksrivastava6070 2 ปีที่แล้ว

    Thanks Rahul... I was stuck at it for a long time till i foiund your video

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      You are welcome

  • @g10-you
    @g10-you 2 ปีที่แล้ว

    I referred this tutorial and it solved issue which I was facing since morning my day. Thanks Rahul :)

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Most welcome 😊

  • @edhsu6540
    @edhsu6540 3 ปีที่แล้ว

    Thank you very much, it works! I'm doing ssh for 2hrs+ until see your video. Thanks again.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad it helped

  • @PreetiKumari441
    @PreetiKumari441 2 ปีที่แล้ว

    What is alternative of cat command in window

  • @theonewheeler
    @theonewheeler 8 หลายเดือนก่อน

    you just randomly paste in a key at 5.27 without explaining where you found it. how do i get this key?!

    • @theonewheeler
      @theonewheeler 8 หลายเดือนก่อน

      oh and it turns out you don't need to go find it! it appears after hitting enter on the path! thanks for wasting 20 mins of my time!

  • @lnithya456
    @lnithya456 2 ปีที่แล้ว

    Getting this error while npm i. But able to clone with token based authentication. Npm i facing issue

  • @khanahmedraza3337
    @khanahmedraza3337 ปีที่แล้ว

    thankyou brother easiest way you have uploaded i have seen so many videos but really confused how to solve you are the man who help me to solve this problem relly thanks bro😊😊😊😊

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You are most welcome

  • @hirenbhatt9808
    @hirenbhatt9808 3 ปีที่แล้ว

    I have tried 20+ video’s for this issue but I Say this is the best of all others %very clear understanding %and feel confident in just starting the video that it seems helpful at the end %
    Thanks you

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad it helped!

  • @I_LoveCatto
    @I_LoveCatto 3 ปีที่แล้ว +1

    1:21 how to open that?

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Can you elaborate your problem a bit more?

  • @raresmacovei8382
    @raresmacovei8382 3 ปีที่แล้ว

    Followed the tutorial on your website, worked perfectly. Thanks a lot man. You got a Like on the Video.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว +1

      Glad it helped

  • @olugaabiola3725
    @olugaabiola3725 2 ปีที่แล้ว

    waoooo! have been on it for like 4 hours finding solution to it. am really happy that i could solve it through your video. thanks

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it helped you to troubleshoot the issue with your github repository

  • @amritabhattacharya6344
    @amritabhattacharya6344 3 ปีที่แล้ว

    Hello Sir. Can you please suggest what should I do while facing the following problem
    fatal: could not create work tree dir 'Hello': permission denied.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You do not have permission to work on directory - hello
      please change the permission by running command chmod 777 Hello

    • @amritabhattacharya6344
      @amritabhattacharya6344 3 ปีที่แล้ว

      Thank you Sir.

  • @nalinip8906
    @nalinip8906 3 ปีที่แล้ว

    thanks for the video.. i am getting error message when i use cat
    'CAT' is not recognized as an internal or external command,
    operable program or batch file.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      it feels bit weird the kind of error you are getting. As the error you have got It feels like you have not installed CAT onto your machine.

  • @azharhussain2270
    @azharhussain2270 2 ปีที่แล้ว

    simple and nice explanation generating or reusing the existing SSH key on ubuntu; thanks

  • @pradipdhungana
    @pradipdhungana 3 ปีที่แล้ว +2

    Thank you so much! You have explained everything in the easiest way!

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Happy to hear that!

  • @christophergonzalez8736
    @christophergonzalez8736 11 หลายเดือนก่อน

    I had to click the youtube link from google to write this message . I love you thank you for this.

  • @ramesherrabolu1590
    @ramesherrabolu1590 9 หลายเดือนก่อน

    I am having error while pushing, but not at cloning stage.

    • @RahulWagh
      @RahulWagh  9 หลายเดือนก่อน

      Check the ssh keys if public key has been made available on GitHub or not

    • @ramesherrabolu1590
      @ramesherrabolu1590 9 หลายเดือนก่อน

      @@RahulWagh I did add them later on. But the download using ssh didn't raise an error which I don't understand, perhaps anyone can download the repo

  • @MyPakistanilover
    @MyPakistanilover ปีที่แล้ว

    Short, precise and problem solving, thank you...!!!

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You're welcome!

  • @hirdeshshrivastava6985
    @hirdeshshrivastava6985 2 ปีที่แล้ว

    Amazing....very well explained....thanks for fixing my issue quickly.... you video just made it smooth.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it helped!

  • @АлександрАгеев-щ6щ
    @АлександрАгеев-щ6щ 2 ปีที่แล้ว

    thank you so mush)) it was very useful video for me. I lost about 1 hour before I have found your channel!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad that it helped you

  • @gaganb.9408
    @gaganb.9408 2 ปีที่แล้ว

    I am using windows, what do I write instead of "cat" command?

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว +1

      you can simply go to that folder and open the file in a notepad or else you need to install the gitbash on windows machine to use the cat command

    • @gaganb.9408
      @gaganb.9408 2 ปีที่แล้ว

      @@RahulWagh actually i was able to use cat command on powershell

  • @shasankperiwal7034
    @shasankperiwal7034 2 ปีที่แล้ว +1

    Some god level stuff broken down such that a kid can understand. Thank you so much!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว +1

      haha glad it helped you

  • @ganeshaguru5760
    @ganeshaguru5760 2 ปีที่แล้ว +1

    Thank you so much Dear!. Concise and clear explanation..

  • @JHON_AMORIM
    @JHON_AMORIM 10 หลายเดือนก่อน

    2 step don't work for me ;-;

  • @priyanshugupta2104
    @priyanshugupta2104 ปีที่แล้ว

    Protocal http is not supported
    I am not Getting solution of this anywhere, kindly help me resolve it pls pls pls it's to necessary for me 🙏🙏🙏🙏🙏🙏

  • @SaurabhYadav-ki8zi
    @SaurabhYadav-ki8zi ปีที่แล้ว

    thank you man just because of you i uploaded my first project

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      That's awesome!

  • @Samps_shadowlogykhot
    @Samps_shadowlogykhot 2 ปีที่แล้ว

    Thanks a ton!!!! so many docs and so many confusions. You made it so simple :)

  • @MohitKumar-nf5jn
    @MohitKumar-nf5jn 2 ปีที่แล้ว +1

    Thank you a lot, it is more helpful

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it was helpful!

  • @shubhamvishwakarma9233
    @shubhamvishwakarma9233 11 หลายเดือนก่อน

    This is well explained !!! Thanx Rahul.

    • @RahulWagh
      @RahulWagh  11 หลายเดือนก่อน

      You are welcome

  • @missinglink2416
    @missinglink2416 3 ปีที่แล้ว +1

    thank you so much sir,, your video was very new hence it really provide up to date information. God bless

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You are most welcome

  • @zeinplayy
    @zeinplayy 2 ปีที่แล้ว

    amazing explanation, thank you very much... new subscriber here and liked your video bro

  • @gladiator06m
    @gladiator06m ปีที่แล้ว

    thanks man, i followed your tutorial and i fixed my problem thanks to you !

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      Glad I could help

  • @bhushan2k
    @bhushan2k 3 ปีที่แล้ว

    any instruction for MacOS?

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      There is not much difference if you compare the linux instructions or macos. It should be the same for both.

  • @rajkishormahanada6223
    @rajkishormahanada6223 2 ปีที่แล้ว +1

    Sir I am not able read your screen clearly.kindly upload good quality screen vedio

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Ohh probably you could try full screen if that helps?

  • @carlosarmenta2674
    @carlosarmenta2674 3 ปีที่แล้ว

    I have just format my computer, this approach help me a lot (I use the ssh)

  • @bilanicivasile
    @bilanicivasile 2 ปีที่แล้ว

    Thanks Dude! Very clear! Very well explained and documented.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it helped!

  • @mvbvlogs2174
    @mvbvlogs2174 3 ปีที่แล้ว

    Thank you very much,am in full of confusion-while saw yours video its resolved,once again thanks

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad it helped you

  • @fazlarabbi9818
    @fazlarabbi9818 2 ปีที่แล้ว

    Thanks a lot brother. You instruction help me a lot to solve the issue that I couldn't fix on time. Thanks from my heart, brother

  • @annirock82
    @annirock82 3 ปีที่แล้ว

    Thanks so much! I got my git - Github connection working again!!

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad it helped!

  • @Firewall141
    @Firewall141 ปีที่แล้ว

    Great thanks man, I was struggling with this issue for like an hour with a half. Huge thanks dude!!! 👍👍👍👍👍👍❤❤💛💙

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You are welcome

  • @weekendplayer442
    @weekendplayer442 2 ปีที่แล้ว +1

    You just saved my life!!!!!
    Thank you so much

  • @kevinwakhisi7001
    @kevinwakhisi7001 3 ปีที่แล้ว

    Thanks. I wonder why it did this when I was regularly committing changes then just a few hour later I get the message

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      well sometimes you accidently delete the keys from github or you switch the laptop

  • @devenvaru
    @devenvaru 2 ปีที่แล้ว

    Great video, To the point quick and nice

  • @thereflextester_
    @thereflextester_ ปีที่แล้ว

    Thank you so much! This helped me solve an issue plaguing me for a while.

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      Great to hear!

  • @LostOfSpace
    @LostOfSpace 4 หลายเดือนก่อน

    Thank you bro, you're the one who finally helped me

  • @priteeshkissoondhery7616
    @priteeshkissoondhery7616 2 ปีที่แล้ว

    Concise explanation and it works 👍

  • @lizbirb4851
    @lizbirb4851 18 วันที่ผ่านมา

    you saved my life and also my career

  • @Dseyisax
    @Dseyisax 11 หลายเดือนก่อน

    very easy to understand...
    Jesus bless you man!

    • @RahulWagh
      @RahulWagh  11 หลายเดือนก่อน

      Glad to hear that!

  • @marcossandoval1260
    @marcossandoval1260 2 ปีที่แล้ว

    Thank you from Chile, it works for me

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      You're welcome!

  • @alokgargalok
    @alokgargalok 3 ปีที่แล้ว

    Nice One.. Thank you..
    That was really helpful to me..

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      Glad to hear that

  • @nicolaciaco
    @nicolaciaco 2 ปีที่แล้ว

    Good stuff here. It works like a charm

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว +1

      Great to hear!

  • @JyotiSachinKulkarni
    @JyotiSachinKulkarni ปีที่แล้ว

    its a great method, helped to resolve issue, Thank you so much

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You're welcome!

  • @VivekThankachan-g7g
    @VivekThankachan-g7g 9 หลายเดือนก่อน

    Great video. Really helpful

    • @RahulWagh
      @RahulWagh  9 หลายเดือนก่อน

      Glad you think so!

  • @МартинМихалков-г3у
    @МартинМихалков-г3у 2 ปีที่แล้ว

    Thank you very much!!! Very well explained!!!!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it was helpful!

  • @tinystar3029
    @tinystar3029 ปีที่แล้ว

    thank you so much!!!! this saved me a headache

  • @avinashmk1465
    @avinashmk1465 2 ปีที่แล้ว

    Many thanks!! Very helpful!!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      You're welcome!

  • @ajaygirolkar8880
    @ajaygirolkar8880 2 ปีที่แล้ว +1

    Thank you. this works for me.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      You're welcome!

  • @hungvue470
    @hungvue470 3 ปีที่แล้ว

    thank you very much! very good explanation

  • @theeternalbattle7343
    @theeternalbattle7343 3 ปีที่แล้ว

    You saved my day! Thanks a lot.

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You're welcome!

  • @Riot-Mafia-UP32
    @Riot-Mafia-UP32 8 หลายเดือนก่อน

    Aha finally it worked. Thanks.

    • @RahulWagh
      @RahulWagh  8 หลายเดือนก่อน

      You're welcome!

  • @zairapena5337
    @zairapena5337 3 ปีที่แล้ว

    Amaizing.....Thank you so much!!!

  • @shil2357
    @shil2357 2 ปีที่แล้ว

    Your video helped me. Thank you very much for this video.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad to hear that

  • @ravindrasarode6752
    @ravindrasarode6752 ปีที่แล้ว

    Thanks a bunch you have saved my lot of time, thanks again 😍

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      You're welcome 😊

  • @saurabhgupta6167
    @saurabhgupta6167 3 ปีที่แล้ว

    Thanks a lot Man :D this video is too much helpful

  • @bleuberrylounge1224
    @bleuberrylounge1224 8 หลายเดือนก่อน

    Oh great Man thanks! solved the issue. love Pakistan

    • @RahulWagh
      @RahulWagh  8 หลายเดือนก่อน

      Glad to hear that

  • @zensks
    @zensks ปีที่แล้ว

    Amazing help, thank you so much

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว +1

      You're welcome!

  • @eve5939
    @eve5939 3 ปีที่แล้ว

    Thank You 🤗 this really helped..

  • @uhqdev
    @uhqdev 2 ปีที่แล้ว

    Thanks you, is working and solve my problem. (from indonesia)

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad to hear that

  • @kennedyfreitas7548
    @kennedyfreitas7548 3 ปีที่แล้ว +1

    Helped me out
    thanks dude

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You welcomed

  • @hopethisnameisntok
    @hopethisnameisntok 2 ปีที่แล้ว

    THANKS MAN! great video

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it helped!

  • @shrinidhig3672
    @shrinidhig3672 2 ปีที่แล้ว

    worked... thanks buddy 🙂

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว +1

      You're welcome!

  • @fenixneira
    @fenixneira 3 ปีที่แล้ว

    Thank you so much from Colombia :D

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You're welcome!

  • @juanmanueldiazortiz7054
    @juanmanueldiazortiz7054 2 ปีที่แล้ว

    You rocks man. Thanks!

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว +1

      Glad you liked it

  • @armandoeight7028
    @armandoeight7028 2 ปีที่แล้ว

    Thank you so much !!!!!!!!!!!!! after 2 hours thx mr.

    • @RahulWagh
      @RahulWagh  2 ปีที่แล้ว

      Glad it worked

  • @Tony-ee3nm
    @Tony-ee3nm 3 ปีที่แล้ว

    This worked for me, thanks a lot

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว +1

      Glad it helped

  • @almanoduerme
    @almanoduerme 3 ปีที่แล้ว

    Thanks for your video.
    it has worked for me .

    • @RahulWagh
      @RahulWagh  3 ปีที่แล้ว

      You are welcome

  • @tubex1300
    @tubex1300 ปีที่แล้ว

    Love it clear and easy to understand

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      Glad it was helpful!

  • @HerbertMaia-d2p
    @HerbertMaia-d2p ปีที่แล้ว

    thanks man!! you help me a lot, I love you!!!!

    • @RahulWagh
      @RahulWagh  ปีที่แล้ว

      Glad I could help!

  • @armanhabib353
    @armanhabib353 ปีที่แล้ว

    thank you so much.. very helpful video

  • @Max-ig8qd
    @Max-ig8qd 2 ปีที่แล้ว

    Thank you very much! You helped me a lot!! :)