Committing Changes in Git and Pushing to a GitHub Repository

  Рет қаралды 393,655

Data School

Data School

10 жыл бұрын

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 жыл бұрын
This video was incredibly helpful and much more useful than some of the much longer videos I've watched. Thank you!
@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!
@jessicayoder7482
@jessicayoder7482 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!
@MarkPetersJr
@MarkPetersJr 10 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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 5 жыл бұрын
Glad it was helpful to you!
@timothyroy20111
@timothyroy20111 3 жыл бұрын
Thank you, Data School for keeping it short and to the point!
@dataschool
@dataschool 3 жыл бұрын
You're welcome!
@shafaqsarwar8486
@shafaqsarwar8486 9 жыл бұрын
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 8 жыл бұрын
+Shafaq Sarwar You're very welcome! I'm happy to help :)
@eoalejandro
@eoalejandro 9 жыл бұрын
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.
@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!
@sophiedelamasantiere831
@sophiedelamasantiere831 10 жыл бұрын
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!
@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!
@dataschool
@dataschool 4 жыл бұрын
Great to hear!
@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 :)
@dataschool
@dataschool 2 жыл бұрын
You're very welcome!
@sdwhitesox8039
@sdwhitesox8039 5 жыл бұрын
Clear and concise explanations are hard to come by - thank you
@dataschool
@dataschool 5 жыл бұрын
You're very welcome!
@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
@dataschool
@dataschool 2 жыл бұрын
Wow, thank you so much!
@kristynmiller8957
@kristynmiller8957 10 жыл бұрын
Oh Kevin, thank goodness for you! You are born to teach my friend!
@dataschool
@dataschool 10 жыл бұрын
What a nice compliment, you made my day! :)
@ShivaKumar-ps1vh
@ShivaKumar-ps1vh 4 жыл бұрын
Best explanation of all the Github videos seen till now...👌
@dataschool
@dataschool 3 жыл бұрын
Glad you think so!
@swimfast8076
@swimfast8076 9 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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 жыл бұрын
Great to hear! You are very welcome, Unam. Good luck with the rest of the Specialization!
@mrlilhobbes
@mrlilhobbes Жыл бұрын
Your simple and clear video helped me remember the steps on how to use Git. Thanks!
@dataschool
@dataschool Жыл бұрын
Glad it helped!
@JabberingRaven
@JabberingRaven 5 жыл бұрын
Thank you, thank you, thank you! No has been able to explain it as simple as you.
@dataschool
@dataschool 5 жыл бұрын
Great to hear! :)
@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 :)
@gabrielsegura626
@gabrielsegura626 3 жыл бұрын
thank you for this ... confirmed 7 years after and this still works
@dataschool
@dataschool 2 жыл бұрын
Great!
@i--i4933
@i--i4933 3 жыл бұрын
all these years later this vid really helped ty
@dataschool
@dataschool 3 жыл бұрын
Great to hear! 🙌
@ihcelee
@ihcelee 6 жыл бұрын
this was great, good balance of detail yet quick and to the point.
@dataschool
@dataschool 6 жыл бұрын
Thanks!
@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!
@annyni6640
@annyni6640 3 жыл бұрын
Thank you! I was trying to figure what I was doing wrong pushing my file to github and this video helped me a lot!
@dataschool
@dataschool 3 жыл бұрын
Glad it helped!
@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.
@Buffnerd_i
@Buffnerd_i 4 жыл бұрын
the best video out there for this - thank you so much!!
@dataschool
@dataschool 4 жыл бұрын
Thanks!
@basiccoder2166
@basiccoder2166 2 жыл бұрын
Thank you, thank you, thank you! Your tutorials are so clear and simple!
@dataschool
@dataschool 2 жыл бұрын
Thank you so much! 🙏
@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 :)
@peters7022
@peters7022 9 жыл бұрын
The videos helped quite a bit. Thank you very much for putting them together.
@alokranjan476
@alokranjan476 3 жыл бұрын
Very informative video in a very simple way. Thanks a lot.
@dataschool
@dataschool 2 жыл бұрын
Most welcome!
@AlbertoMarioStriedingerPinilla
@AlbertoMarioStriedingerPinilla 10 жыл бұрын
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 =)
@lorenduplessis3754
@lorenduplessis3754 10 жыл бұрын
Found this really helpful, thanks!
@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!
@leylaziba8452
@leylaziba8452 6 жыл бұрын
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! :)
@thomasappleby3123
@thomasappleby3123 3 жыл бұрын
Great job!!
@FlyteWizard
@FlyteWizard 8 жыл бұрын
Thank you, I learn better visually than I do with words :D
@dataschool
@dataschool 8 жыл бұрын
+FlyteWizard You're welcome!
@CodyCleggMusic
@CodyCleggMusic 5 жыл бұрын
Very helpful. Thanks, man!
@dataschool
@dataschool 5 жыл бұрын
You're welcome!
@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! :)
@alteo8588
@alteo8588 2 жыл бұрын
Thank you so much. Taught me everything I needed to know and was super clear!
@dataschool
@dataschool 2 жыл бұрын
I'm so glad!
@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!
@jasongonzalez6233
@jasongonzalez6233 9 жыл бұрын
Thanks for the video. Helped me out where google could not. Thumbs up!
@dataschool
@dataschool 9 жыл бұрын
Awesome! Glad I could help!
@catzcool89
@catzcool89 6 жыл бұрын
Thanks you are awesome! Was able to finally commit and push with ease on an existing branch :)
@dataschool
@dataschool 6 жыл бұрын
Great! :)
@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!
@SilverSurferFTW
@SilverSurferFTW 6 жыл бұрын
My friend your tutorials are perfect you are good teacher!
@dataschool
@dataschool 6 жыл бұрын
Thanks!
@jwgenmed
@jwgenmed 8 жыл бұрын
A lifesaver; thanks. Very clear and easy to follow.
@dataschool
@dataschool 8 жыл бұрын
+jwgenmed You're welcome! Glad to hear.
@QRobotix
@QRobotix 5 жыл бұрын
awesome tutorial! Thanks!
@dataschool
@dataschool 5 жыл бұрын
You're welcome!
@litatylovesyou
@litatylovesyou 3 жыл бұрын
you sir just saved my whole life!!!
@dataschool
@dataschool 3 жыл бұрын
🙌
@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 :)
@kitchenjhc1
@kitchenjhc1 9 жыл бұрын
Thank you so much for making these videos!
@dataschool
@dataschool 9 жыл бұрын
kitchenjhc1, you are very welcome!
@xXSupaKawaiiXx
@xXSupaKawaiiXx 10 жыл бұрын
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!
@Kumarkumar-gf3kk
@Kumarkumar-gf3kk 8 жыл бұрын
You are awesome Excellent explanation.You made my day.Thanks a ton!
@dataschool
@dataschool 8 жыл бұрын
+kiran kumar You're very welcome... thank you for your kind comments!
@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!
@tanvirchowdhury2315
@tanvirchowdhury2315 3 жыл бұрын
Best tutorial ever....! Helpful... & Thanks buddy
@dataschool
@dataschool 3 жыл бұрын
You're very welcome!
@idc20627
@idc20627 Жыл бұрын
A god send of a tutorial, holy fuck I think these videos need to be sent out to all universities
@MehediHasan09
@MehediHasan09 10 жыл бұрын
Thank you So Much.... Really you create a great lesson :)
@toteepeetube
@toteepeetube 4 жыл бұрын
Thank you Kevin, it helped me a lot!
@dataschool
@dataschool 4 жыл бұрын
Great to hear!
@hilarioobiangobiangmangue8111
@hilarioobiangobiangmangue8111 2 жыл бұрын
Thank you so much for the clear explanation video
@dataschool
@dataschool 2 жыл бұрын
You're very welcome!
@nsdirect
@nsdirect 10 жыл бұрын
Really great stuff.
@dataschool
@dataschool 10 жыл бұрын
Thanks, much appreciated!
@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!
@lordtejas9659
@lordtejas9659 3 жыл бұрын
Very helpful now i know what i was doing and how i will do it.
@augustin6233
@augustin6233 9 жыл бұрын
Thanks for the video. Very helpful
@dataschool
@dataschool 8 жыл бұрын
+augustin tete You're welcome!
@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 жыл бұрын
I love it even more that you reply to all of our silly comments.
@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!
@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?
@amishanarsingani2307
@amishanarsingani2307 4 жыл бұрын
Thank you for such an informative video!
@dataschool
@dataschool 4 жыл бұрын
You're welcome!
@teomandi
@teomandi 6 жыл бұрын
thank you man... you make so simple what everyone show so wierd
@dataschool
@dataschool 6 жыл бұрын
You're welcome!
@AayushShah
@AayushShah 3 жыл бұрын
Thank you very much bruh you helped a lot!!
@dataschool
@dataschool 3 жыл бұрын
Great to hear!
@CouchSttr
@CouchSttr 8 жыл бұрын
This is wonderful - thank you so much!!!!
@dataschool
@dataschool 8 жыл бұрын
+Julia Charles You're welcome!
@a26z1c2b3
@a26z1c2b3 8 жыл бұрын
Thanks! Very helpful.
@dataschool
@dataschool 8 жыл бұрын
+a26z1c2b3 You're welcome!
@aoianalytics
@aoianalytics Жыл бұрын
Lifesaver x1000 🙌🏾
@dataschool
@dataschool Жыл бұрын
Thanks!
@slap420
@slap420 5 жыл бұрын
Thanks for the great video
@dataschool
@dataschool 5 жыл бұрын
You're very welcome!
@stefanface
@stefanface 5 жыл бұрын
Thanks! Helped me alot!
@dataschool
@dataschool 5 жыл бұрын
You're welcome!
@chaitanyadheeraj9551
@chaitanyadheeraj9551 9 жыл бұрын
can u please say me, from where this markdown live editor got excited from?? i dint get your point over there.
@LauraMarilia
@LauraMarilia 10 жыл бұрын
Thanks a lot!
@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: kzfaq.info/sun/PL5-da3qGB5ICeMbQuqbbCOQWcS6OYBr5A
@Thula_Impala96
@Thula_Impala96 6 жыл бұрын
Very helpful!!! Saved me so much headache
@dataschool
@dataschool 6 жыл бұрын
That's great to hear!
@sourabhshrivas3520
@sourabhshrivas3520 8 жыл бұрын
Thank you. Its really help.
@dataschool
@dataschool 8 жыл бұрын
+Sourabh Shrivas You're welcome!
@ael-razi2512
@ael-razi2512 9 жыл бұрын
You're amazing. I've never commented on KZfaq, 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
@dataschool
@dataschool 3 жыл бұрын
😄
@devprakash4671
@devprakash4671 4 жыл бұрын
Bahut bahut dhanyawaad (very very thank you )
@dataschool
@dataschool 3 жыл бұрын
You're welcome!
@johandanmo
@johandanmo 4 жыл бұрын
Thank you!!
@zamirmm2973
@zamirmm2973 8 жыл бұрын
Thanks. Finally I learned git.
@dataschool
@dataschool 8 жыл бұрын
+Zamir Mm You're welcome!
@notia2000
@notia2000 9 жыл бұрын
very helpful thanks!
@dataschool
@dataschool 9 жыл бұрын
Anton Szilasi You're very welcome!
@hugofilipeseleiro
@hugofilipeseleiro 8 жыл бұрын
Thanks Master !
@dataschool
@dataschool 8 жыл бұрын
+Hugo Seleiro Ha! You're welcome :)
@rommelpramo4269
@rommelpramo4269 6 жыл бұрын
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!
@EveDaya
@EveDaya 4 жыл бұрын
Great, thanks a lot!!
@dataschool
@dataschool 4 жыл бұрын
You're very welcome!
@jared394
@jared394 9 жыл бұрын
well done!
@mohammedabubaker6844
@mohammedabubaker6844 2 жыл бұрын
You Are Awesome!
@dataschool
@dataschool 2 жыл бұрын
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/
@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/
@vishalbendre7567
@vishalbendre7567 7 жыл бұрын
Excellent !!! and Thanks a Lot ..
@dataschool
@dataschool 7 жыл бұрын
You're welcome!
@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.)
@paulsotelo4010
@paulsotelo4010 5 жыл бұрын
man thank you so much
@dataschool
@dataschool 5 жыл бұрын
You're very welcome!
@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! :)
@AshokGujjar
@AshokGujjar 7 жыл бұрын
Thank you bro. :)
@ElecPrizyy
@ElecPrizyy 2 жыл бұрын
you're awesome, thank you.
@dataschool
@dataschool 2 жыл бұрын
You're welcome!
@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 жыл бұрын
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.
Syncing Your GitHub Fork
4:27
Data School
Рет қаралды 109 М.
1.6: Cloning Repo and Push/Pull - Git and GitHub for Poets
21:50
The Coding Train
Рет қаралды 482 М.
Smart Sigma Kid #funny #sigma #comedy
00:25
CRAZY GREAPA
Рет қаралды 14 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 170 #shorts
00:27
Happy 4th of July 😂
00:12
Pink Shirt Girl
Рет қаралды 15 МЛН
I Can't Believe We Did This...
00:38
Stokes Twins
Рет қаралды 76 МЛН
How to create a new branch on GitHub // Commit & Push
8:28
Kahan Data Solutions
Рет қаралды 295 М.
Troubleshooting: Updates Rejected When Pushing to GitHub
8:57
Data School
Рет қаралды 82 М.
Git Tutorial For Dummies
19:25
Nick White
Рет қаралды 1 МЛН
Git & GitHub Crash Course For Beginners
32:42
Traversy Media
Рет қаралды 3,1 МЛН
Git Tutorial - 4 - Commit
7:10
thenewboston
Рет қаралды 323 М.
How to Push Code to Github
6:10
Codecademy
Рет қаралды 947 М.
Git Tutorial #17 - How to Push changes to Github/Remote Repository?
5:51
ToolsQA - Destination for QA professionals
Рет қаралды 97 М.
Git MERGE vs REBASE
16:12
Academind
Рет қаралды 1 МЛН
Smart Sigma Kid #funny #sigma #comedy
00:25
CRAZY GREAPA
Рет қаралды 14 МЛН