Committing Changes in Git and Pushing to a GitHub Repository

Поделиться
HTML-код
  • Опубликовано: 2 май 2014
  • This is video #8 in the Data School series, "Introduction to Git and GitHub." Relevant links, a command list, and the full transcript are below. Playlist: • Version control with G...
    == LET'S CONNECT! ==
    Blog: www.dataschool.io
    Newsletter: www.dataschool.io/subscribe/
    Twitter: / justmarkham
    GitHub: github.com/justmarkham
    == LINKS RELATED TO THIS VIDEO ==
    Git quick reference for beginners: www.dataschool.io/git-quick-re...
    Tracking, staging, and committing: git-scm.com/book/en/Git-Basics...
    Markdown Live Editor: jrmoran.com/playground/markdow...
    Mastering Markdown: guides.github.com/features/ma...
    == COMMAND LIST ==
    create a file: touch [filename]
    check the status: git status
    track and stage a single file: git add [filename]
    track and stage all files: git add .
    commit with a message: git commit -m "description of commit"
    view the log: git log
    push changes: git push [remotename] [branchname]
    == TRANSCRIPT ==
    In this video, we're going to continue working with the "test-repo" we created previously. Specifically, we're going to edit an existing file, add a new file, commit those changes, and push those changes up to GitHub.
    To start, we've already opened up Git Bash and changed our working directory to test-repo. As you might recall, there's just one file in the repo, which is the "README.md" file. We're going to edit that file.
    Since it's a Markdown file, you can edit it in any text editor. I've opened the file in Windows Notepad, and am just going to make a simple edit and then save the file.
    Let's also create a new Markdown file called "new.md". We're going to use a command called "touch". It's not a Git command, but it's especially handy on Windows since it can be hard to create a file with a non-standard extension. Simply type "touch" and then the name of the file. You can see that it has been created.
    The file we created is empty, so let's open it in Notepad.
    I've written some Markdown code in this Markdown Live Editor, so that you can see a preview of what it looks like. The Markdown code is on the left, and the rendered version is on the right. I'll link to this tool in the video description.
    Anyway, let's copy the Markdown code to the new.md file and save it.
    We're back in Git Bash, and are going to run the "git status" command to see the status of our files. It tells us that we've got one tracked file that has been modified, and one untracked file that has been added.
    We want to stage both of these files for committing. We use the "git add" command to do this. You could do this one file at a time using "git add" and then the filename. But instead, we're going to use "git add ." which adds both of them at once.
    Let's run the status again. We can see that the changes are ready for committing.
    To commit, use the "git commit" command. We use the "-m" argument and write a message because every commit should have a descriptive message.
    The commit is complete, and we can run "git status" to confirm that there is nothing else to commit. We can also check the log to see that the commit is there.
    Everything we've done so far has only affected our local machine. To get our GitHub repo up-to-date, we need to push up our changes.
    To push our changes, we use the "git push" command. The specific command is "git push origin master", which means that we want to push the "master" branch to the "origin" remote. Remember that in a previous video, we set up the "origin" remote to refer to our GitHub repository.
    Type in your password, and you're done. Refresh GitHub, and you can see that the "README.md" file has been modified, and the "new.md" file has been added. You can also see the commit history.
    On my blog, dataschool.io, I've got a Git quick reference guide that I wrote specifically for beginners, containing these and other common commands. I'll link to it in the video description, and hopefully you'll find it to be useful.

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

  • @taehong8956
    @taehong8956 9 лет назад +6

    This video was incredibly helpful and much more useful than some of the much longer videos I've watched. Thank you!

  • @jessicayoder7482
    @jessicayoder7482 4 года назад +4

    Thank you, thank you, thank you! Your tutorials are so clear and simple! I have really been struggling to learn how to use Git, and your videos have walked me through the process so seamlessly! I really wish I could give you a million dollars to keep doing what you're doing. I am so grateful!

  • @JOJOSHgaming7514
    @JOJOSHgaming7514 4 года назад

    I've been searching tens of websites on how to push changes to GitHub repo, but most of them were so intricate and incomprehensible. This is the simplest video solution more than I'd expected. Thank you so much!

  • @MarkPetersJr
    @MarkPetersJr 10 лет назад +3

    Hi Kevin, thank you very much for taking the time to document this. Very well done, hugely beneficial, saved me even more hours of trying to figure this out.

    • @dataschool
      @dataschool  10 лет назад +1

      Awesome, glad to hear Mark! My goal was always to create the kind of resource that would have helped me out in the beginning... happy to share my lessons learned!

  • @fande789
    @fande789 6 лет назад +1

    These are awesome videos on GIT, not only are they clear but you explain what is going on and where the changes are made (local or internet) for each command.

    • @dataschool
      @dataschool  6 лет назад

      Glad it was helpful to you!

  • @eoalejandro
    @eoalejandro 9 лет назад +2

    Thank you for such a clear and concise explanation about the basics of Git. I began the Coursera course about Data Scientist Tools and I was at a lost with using the commands to complete the first capstone project. I appreciate your videos and I look forward to reading your blog.

  • @shafaqsarwar8486
    @shafaqsarwar8486 9 лет назад +1

    Finding your videos really useful for my coursera course. Thank you much for keeping them short and to the point. Looking forward to learning & practicing more of it. Thanks again!

    • @dataschool
      @dataschool  9 лет назад

      +Shafaq Sarwar You're very welcome! I'm happy to help :)

  • @jeansinger
    @jeansinger 9 лет назад

    Thank you so much! This series of videos is incredibly helpful. I don't know what I would have done without them.

    • @dataschool
      @dataschool  9 лет назад

      jeansinger You are so welcome!

  • @timothyroy20111
    @timothyroy20111 3 года назад +1

    Thank you, Data School for keeping it short and to the point!

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

    this is by far the best and easiest video I have seen on this and I've watched plenty by now. thanks a million

  • @sachinprasad6324
    @sachinprasad6324 3 года назад

    I 'm just yearning for this since 2-3 days and came up with your video and my problem has solved .you made my day .. thank you man :)

  • @sophiedelamasantiere831
    @sophiedelamasantiere831 10 лет назад +1

    Thanks Kevin, this video is great! It is short and complete at the same time. Definitely helpful!

  • @lesleymorgan01
    @lesleymorgan01 8 лет назад

    Thanks to your videos, I'm not completely bald (I found them before I tore ALL of my hair out in frustration). The transcripts are above and beyond the call of duty, and I'm looking forward to exploring your links. Your work is greatly appreciated!

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

    Your simple and clear video helped me remember the steps on how to use Git. Thanks!

  • @ShivaKumar-ps1vh
    @ShivaKumar-ps1vh 4 года назад

    Best explanation of all the Github videos seen till now...👌

  • @d0ug
    @d0ug 4 года назад

    I just started a coding intensive and I used this video as a quick reference to push my assignment's changes to github. Thank you!

  • @sdwhitesox8039
    @sdwhitesox8039 5 лет назад +1

    Clear and concise explanations are hard to come by - thank you

  • @swimfast8076
    @swimfast8076 9 лет назад +1

    Thank you very much for such a nice, easy and clean review of committing changes in Git and Pushing to a GitHub Repository. Just viewed it once, repeated all the instructions and was able to commit. Great job!

    • @dataschool
      @dataschool  9 лет назад +1

      Great! You are very welcome. I spent a lot of time refining these videos to make them as clear as possible, while also keeping them short and to the point.

  • @umzab
    @umzab 9 лет назад +9

    Thank you so much for these. So helpful. I am doing the Data Science Specialization and feel much more confident after the extra bit of help.

    • @dataschool
      @dataschool  9 лет назад +1

      Great to hear! You are very welcome, Unam. Good luck with the rest of the Specialization!

  • @rajkiranboggala7085
    @rajkiranboggala7085 9 лет назад

    Excellent series of videos, very helpful

    • @dataschool
      @dataschool  9 лет назад

      rajkiran boggala Thanks for your kind comment! Let me know if you have any other questions about Git or GitHub that I can answer!

  • @aidaroig-compton7364
    @aidaroig-compton7364 9 лет назад

    Hello, and thank you in advance for your time!
    So, I want to know if I understand a certain concept here: When you use Windows Note Pad to edit your markdown file, is that the same thing as going to R Studio to edit it?

  • @kristynmiller8957
    @kristynmiller8957 10 лет назад +1

    Oh Kevin, thank goodness for you! You are born to teach my friend!

    • @dataschool
      @dataschool  10 лет назад

      What a nice compliment, you made my day! :)

  • @ihcelee
    @ihcelee 6 лет назад

    this was great, good balance of detail yet quick and to the point.

  • @alokranjan476
    @alokranjan476 3 года назад +1

    Very informative video in a very simple way. Thanks a lot.

  • @siobhanpeterson2687
    @siobhanpeterson2687 8 лет назад

    Thanks so much for posting these. Really helpful in understanding what I am doing and helping me through my courses.

    • @dataschool
      @dataschool  8 лет назад

      +Siobhan Peterson You're very welcome :)

  • @i--i4933
    @i--i4933 3 года назад

    all these years later
    this vid really helped ty

  • @AlbertoMarioStriedingerPinilla
    @AlbertoMarioStriedingerPinilla 10 лет назад +1

    Kevin, thanks a lot for the videos, they are very very well done, I am reviewing them now and doing the same steps, plus just trying stuff =)

  • @JabberingRaven
    @JabberingRaven 5 лет назад

    Thank you, thank you, thank you! No has been able to explain it as simple as you.

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

    Thank you, thank you, thank you! Your tutorials are so clear and simple!

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

      Thank you so much! 🙏

  • @peters7022
    @peters7022 9 лет назад

    The videos helped quite a bit.
    Thank you very much for putting them together.

  • @annyni6640
    @annyni6640 3 года назад +1

    Thank you! I was trying to figure what I was doing wrong pushing my file to github and this video helped me a lot!

  • @Buffnerd_i
    @Buffnerd_i 4 года назад +1

    the best video out there for this - thank you so much!!

  • @gabrielsegura626
    @gabrielsegura626 3 года назад +1

    thank you for this ... confirmed 7 years after and this still works

  • @alariv8
    @alariv8 9 лет назад

    Thank you for the help, I finally got my R assignment submitted thanks to you.

    • @dataschool
      @dataschool  9 лет назад

      Tribal-Tech Fan You're welcome! Happy to help.

  • @fatemehsalehikhoo8550
    @fatemehsalehikhoo8550 6 лет назад

    You are a fantastic instructor. Thank you so much for your videos.

    • @dataschool
      @dataschool  6 лет назад

      Thanks very much for your kind words!

  • @lorenduplessis3754
    @lorenduplessis3754 10 лет назад

    Found this really helpful, thanks!

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

    Thank you so much. Taught me everything I needed to know and was super clear!

  • @rusty7834
    @rusty7834 9 лет назад

    Over an hour of banging my head on the keyboard, this 5 minute video answer the exact question I looking that I had.

    • @dataschool
      @dataschool  9 лет назад

      rusty7834 Yes! I remember that exact feeling from when I was learning Git. That's exactly why I created these videos :)

  • @CodyCleggMusic
    @CodyCleggMusic 5 лет назад

    Very helpful. Thanks, man!

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

    Thank you so much for the clear explanation video

  • @MissWashhoban
    @MissWashhoban 10 лет назад

    Thank you so much for posting this! :) Very helpful!

    • @dataschool
      @dataschool  10 лет назад

      You are very welcome, I'm glad you found it to be helpful!

  • @chaitanyadheeraj9551
    @chaitanyadheeraj9551 9 лет назад

    can u please say me, from where this markdown live editor got excited from?? i dint get your point over there.

  • @sjohnson6326
    @sjohnson6326 9 лет назад

    Thank you for these videos. They helped me to complete my assignments - they were clear and easy to follow. Very grateful.

    • @dataschool
      @dataschool  9 лет назад

      Shelly-Ann Johnson I'm very happy to help! Thanks for your kind comments :)

  • @catzcool89
    @catzcool89 6 лет назад

    Thanks you are awesome! Was able to finally commit and push with ease on an existing branch
    :)

  • @tushartyagi6655
    @tushartyagi6655 9 лет назад

    Very helpful videos. Just saw a bunch of them. A good place to get started for beginners like me.

    • @dataschool
      @dataschool  9 лет назад

      Tushar Tyagi Excellent, glad they have been helpful to you! :)

    • @tushartyagi6655
      @tushartyagi6655 9 лет назад +1

      I love it even more that you reply to all of our silly comments.

  • @jwgenmed
    @jwgenmed 8 лет назад

    A lifesaver; thanks. Very clear and easy to follow.

    • @dataschool
      @dataschool  8 лет назад

      +jwgenmed You're welcome! Glad to hear.

  • @tanvirchowdhury2315
    @tanvirchowdhury2315 3 года назад

    Best tutorial ever....! Helpful... & Thanks buddy

  • @RaymondLopezaleman
    @RaymondLopezaleman 6 лет назад

    This was quick and easy to understand. Saved my lots of time, Thanks dude! +1

    • @dataschool
      @dataschool  6 лет назад

      You're very welcome! Thanks for your comment!

  • @patriciamartin1807
    @patriciamartin1807 7 лет назад

    Thanks a lot for your patience. You are a very good teacher. Thanks god I have found you, now my life will be easier! bless you

    • @dataschool
      @dataschool  7 лет назад

      Thank you so much for your kind words! :)

  • @SilverSurferFTW
    @SilverSurferFTW 6 лет назад

    My friend your tutorials are perfect you are good teacher!

  • @Kumarkumar-gf3kk
    @Kumarkumar-gf3kk 8 лет назад

    You are awesome Excellent explanation.You made my day.Thanks a ton!

    • @dataschool
      @dataschool  8 лет назад +1

      +kiran kumar You're very welcome... thank you for your kind comments!

  • @kitchenjhc1
    @kitchenjhc1 9 лет назад

    Thank you so much for making these videos!

    • @dataschool
      @dataschool  9 лет назад

      kitchenjhc1, you are very welcome!

  • @litatylovesyou
    @litatylovesyou 3 года назад

    you sir just saved my whole life!!!

  • @QRobotix
    @QRobotix 5 лет назад

    awesome tutorial! Thanks!

  • @augustin6233
    @augustin6233 9 лет назад

    Thanks for the video. Very helpful

    • @dataschool
      @dataschool  9 лет назад

      +augustin tete You're welcome!

  • @jasongonzalez6233
    @jasongonzalez6233 9 лет назад +1

    Thanks for the video. Helped me out where google could not. Thumbs up!

    • @dataschool
      @dataschool  9 лет назад +1

      Awesome! Glad I could help!

  • @devanshugupta4279
    @devanshugupta4279 9 лет назад

    Thank you for the video. It just helped me submit the R files for the course Project.

    • @dataschool
      @dataschool  9 лет назад

      Devanshu Gupta Awesome... congratulations!

  • @FlyteWizard
    @FlyteWizard 8 лет назад

    Thank you, I learn better visually than I do with words :D

    • @dataschool
      @dataschool  8 лет назад

      +FlyteWizard You're welcome!

  • @lordtejas9659
    @lordtejas9659 3 года назад

    Very helpful now i know what i was doing and how i will do it.

  • @thomasappleby3123
    @thomasappleby3123 3 года назад

    Great job!!

  • @toteepeetube
    @toteepeetube 4 года назад +1

    Thank you Kevin, it helped me a lot!

  • @leylaziba8452
    @leylaziba8452 6 лет назад +4

    Thank you so mush for these perfect tutorials of Git and Github. I had lot of difficulties in learning how to work with Git and Github, I could not find a good tutorial for that. You did really good job in teaching this topic, you made it easy to understand. I think you have been born to be a teacher. as AlyMinx said, you are a ROCK

    • @dataschool
      @dataschool  6 лет назад

      Wow! What a kind thing to say... thank you so much! :)

  • @JudithDeurvorst
    @JudithDeurvorst 8 лет назад

    Thank you so much! This is really, really helpful!!!

    • @dataschool
      @dataschool  8 лет назад

      +Judith Deurvorst You're very, very welcome! I'm glad to help!

  • @xXSupaKawaiiXx
    @xXSupaKawaiiXx 10 лет назад +3

    You Sir, ROCK! Wow these videos have helped A LOT for me. I've never even heard of GitHub until recently and felt very overwhelmed with the interface. This video helped clear up so many things up for me. Im also very glad that you have a transcript of your tutorials in every vid. Looking forward to your future videos!!!!

    • @dataschool
      @dataschool  10 лет назад

      Wow, thanks for your enthusiasm, I really appreciate it! Git and GitHub can definitely be overwhelming at first. I had hoped the transcripts would be useful. I actually have a new video (unrelated to Git/GitHub) coming out soon!

  • @MehediHasan09
    @MehediHasan09 10 лет назад

    Thank you So Much.... Really you create a great lesson :)

  • @a26z1c2b3
    @a26z1c2b3 8 лет назад

    Thanks! Very helpful.

    • @dataschool
      @dataschool  8 лет назад

      +a26z1c2b3 You're welcome!

  • @amishanarsingani2307
    @amishanarsingani2307 4 года назад

    Thank you for such an informative video!

  • @mjanke1
    @mjanke1 9 лет назад

    Hi,
    Thanks for the video. What exactly did you drag and drop to open new.md in the video? Once you type touch new.md, where is it?

    • @dataschool
      @dataschool  9 лет назад

      Great question, Marc. When you use the "touch" command, the file appears in the directory you are currently working in (aka your "working directory"). To open the file, I just dragged it from a Windows Explorer window and dropped it into Notepad. (Alternatively, I could have used the File -> Open menus to open it.)

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

    A god send of a tutorial, holy fuck I think these videos need to be sent out to all universities

  • @nsdirect
    @nsdirect 10 лет назад

    Really great stuff.

    • @dataschool
      @dataschool  10 лет назад

      Thanks, much appreciated!

  • @AayushShah
    @AayushShah 3 года назад

    Thank you very much bruh you helped a lot!!

  • @CouchSttr
    @CouchSttr 8 лет назад

    This is wonderful - thank you so much!!!!

    • @dataschool
      @dataschool  8 лет назад

      +Julia Charles You're welcome!

  • @shibaithegreat
    @shibaithegreat 9 лет назад

    Your videos are very helpful and you explain things very well. One question (maybe basic) - why is staging needed before committing?

    • @dataschool
      @dataschool  9 лет назад

      Subhajit Gupta Great question! You need to stage your changes before committing because Git does not presume that you want to include all detected changes in any given commit. In other words, Git wants you to decide what to include in a given commit (which you signal by staging those changes), rather than automatically including all detected changes when you commit.

    • @shibaithegreat
      @shibaithegreat 9 лет назад

      Data School Thanks!

  • @sourabhshrivas3520
    @sourabhshrivas3520 8 лет назад

    Thank you. Its really help.

    • @dataschool
      @dataschool  8 лет назад

      +Sourabh Shrivas You're welcome!

  • @rommelpramo4269
    @rommelpramo4269 6 лет назад +1

    Very helpful. But I have a question. What do I do if I pushed several commits with a commit message that I mistakenly wrote, how do I change them so each one of them has an individual new commit message ?

    • @dataschool
      @dataschool  6 лет назад

      I'm sorry, I'm not sure how to do that!

  • @gautamanand2117
    @gautamanand2117 8 лет назад

    Awesome. I used it to push my first markdown to the Coursera Course. Awesome and simple.

    • @dataschool
      @dataschool  8 лет назад

      +Gautam Anand Excellent, and congratulations!

  • @sumanshrestha6585
    @sumanshrestha6585 7 лет назад

    Nice Videos series.... this one and and also of pandas series.... loved the way you explain things so that everything is understandable...
    looking forward to your other wonderful video series.

    • @dataschool
      @dataschool  7 лет назад

      Excellent! Glad these videos are helpful to you! My machine learning series (with scikit-learn) might be of interest to you: ruclips.net/p/PL5-da3qGB5ICeMbQuqbbCOQWcS6OYBr5A

  • @slap420
    @slap420 5 лет назад

    Thanks for the great video

  • @teomandi
    @teomandi 6 лет назад

    thank you man... you make so simple what everyone show so wierd

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

    Lifesaver x1000 🙌🏾

  • @ael-razi2512
    @ael-razi2512 9 лет назад

    You're amazing. I've never commented on RUclips, I just created an account to say that. The Git portion of The Data Scientist's Toolbox was particularly frustrating. These videos were fantastic.

    • @dataschool
      @dataschool  9 лет назад

      A ElRazi Thank you!! What a nice comment!

  • @DragonRazor9283
    @DragonRazor9283 3 года назад

    Dude you are awesome thank you

  • @RajuDas-zn3gx
    @RajuDas-zn3gx 5 лет назад

    Thanks for your video. I have a doubt. When you push your code to master, don’t you need to checkout the code?

    • @dataschool
      @dataschool  4 года назад

      Not sure I understand, sorry!

  • @devprakash4671
    @devprakash4671 4 года назад

    Bahut bahut dhanyawaad (very very thank you )

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

    thanks a lot. by the way what keyboard did you use here?

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

      Do you mean what keyboard do I type with? I use the Dvorak layout.

  • @MsGokki
    @MsGokki 10 лет назад

    Thank you for your videos....regarding #8, I am not able to open the readme.md in notepad because Notepad doesn't recognise .md ......any suggestions?

    • @dataschool
      @dataschool  10 лет назад +1

      One way to open README.md in Notepad is to click File->Open, and then change the filter from "Text Documents" to "All Files". Another way is to open Notepad, and then drag and drop README.md into Notepad.

  • @LauraMarilia
    @LauraMarilia 10 лет назад +2

    Thanks a lot!

  • @Thula_Impala96
    @Thula_Impala96 6 лет назад

    Very helpful!!! Saved me so much headache

  • @anmcrypto9281
    @anmcrypto9281 6 лет назад

    Soooo. In the read me, of a cloned source code, I could then change the name and all the attributes obviously and that would show up I'm sure after checking the status. And then I could push the changes to GitHub, now, if I'm trying to clone let's say for an example Bitcoin when I pushed my new version, that will be viewable, will that make it a fork? Or how does that work?

    • @dataschool
      @dataschool  6 лет назад

      Maybe this will help? www.dataschool.io/simple-guide-to-forks-in-github-and-git/

  • @stefanface
    @stefanface 5 лет назад

    Thanks! Helped me alot!

  • @foodtarget
    @foodtarget 9 лет назад

    omg thank you thank you for explaining it so clearly!! I cannot tell you how many resources I went through that were supposedly for github beginners, but explained things in github jargon that I don't fully understand because (duh!) I'm a beginner. Watching your videos has definitely decreased my frustration with github. Maybe I will eventually even stop hating it.

    • @dataschool
      @dataschool  9 лет назад

      Ramsey Cardwell Awesome!! Thanks so much for your kind comments. I created this video series because when I learned Git and GitHub, I experienced the same exact frustration. Glad I could be helpful! :)

  • @johandanmo
    @johandanmo 4 года назад

    Thank you!!

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

    Maybe a dumb question but what about pull requests? If you push, then the changes are implemented on the remote, but what if you need it to be a pull request before changes are made? Is that possible through git or how would you go about that?

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

      This might help: www.dataschool.io/how-to-contribute-on-github/

  • @EveDaya
    @EveDaya 4 года назад

    Great, thanks a lot!!

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

    you're awesome, thank you.

  • @hugofilipeseleiro
    @hugofilipeseleiro 8 лет назад

    Thanks Master !

    • @dataschool
      @dataschool  8 лет назад

      +Hugo Seleiro Ha! You're welcome :)

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

    when I give that touch command, it is showing permission denied...wt to do?!

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

    Thanks this helped

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

    You Are Awesome!

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

    This is the best git tutorial I have come across. You have cleared all the confusion I had, many thanks for that. One thing that worried me is that at the end of the video when you typed: git push origin master, you were asked to enter your passphrase for key '/c/users/kevi/.ssh/id_rsa'. I was not asked enter anything! why is that?
    I really need to know why!
    2-: I think you said you typed your password maybe you meant passphrase ? I am new to ssh technology and read lately that passphrases should contain between 15 and 20 characters which can make a bit awkward to type so often, is that correct. Once again many thanks to you for clearing things for me and good luck to you and your family

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

      Thanks for your kind words! 🙏
      I think the difference was due to how I had set up the authentication (SSH vs HTTPS). Hope that helps!