Git and GitHub Tutorials #4 - Creating Forks and Pull Requests

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

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

  • @TheCodex
    @TheCodex  5 ปีที่แล้ว +4

    Brand new Git and GitHub Course for Beginners now on TheCodex! Check it out here: thecodex.me/courses/git-and-github

  • @democracybacksliding
    @democracybacksliding 3 ปีที่แล้ว +7

    I learned a lot from your excent tutorial, important details covered for people that don't know the endless acronmyms, terms etc. that often get skipped over. Great sound & pace
    Thank you..!

  • @shupingliang7669
    @shupingliang7669 ปีที่แล้ว +4

    You explained it so well and clearly! My teacher did the same topic for an hour and after that, I was still confused. Thank you so much!

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

      So true 😂 even our teacher took more than an hour and couldn’t explain . This is awesome 👏

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

    looked 100 of tutorials and your series of git hub tutorials is accepting my brain.

  • @pain.x6
    @pain.x6 ปีที่แล้ว

    MVP. Thanks for adding in Fork vs Branch at the end. I was going to go look for it elsewhere.

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

    You are awesome bro. Simple and precise

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

    Thank you for detailed video, and explanation of difference between branch and fork at 07:00. I appreciate that. Good work.

  • @believer1002s
    @believer1002s 5 หลายเดือนก่อน

    That was very informative and gave a clear understanding !!! Thanks a lot man!!!!!!!🤩

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

    excellent explanation bro. Thanks for the info

  • @alifarhadi5704
    @alifarhadi5704 5 ปีที่แล้ว +3

    thanks for this very useful tutorial

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

    Thank you, this helped.

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

    Hello!, if the original repository get updated with new commits or branches, can I update the fork with the new changes? Thank you in advance.

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

      Yes, you can set the original as upstream and rebase with the original. from stackoverflow.com/a/7244456/9357244 :
      # Add the remote, call it "upstream":
      git remote add upstream github.com/whoever/whatever.git
      # Fetch all the branches of that remote into remote-tracking branches,
      # such as upstream/master:
      git fetch upstream
      # Make sure that you're on your master branch:
      git checkout master
      # Rewrite your master branch so that any commits of yours that
      # aren't already in upstream/master are replayed on top of that
      # other branch:
      git rebase upstream/master

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

    Thanks, it did help me make my first pull request. The starting point to collaborating to open source projects

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

    Great video thank you.

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

    THANK YOU! Exactly what I needed.

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

    Crystal clear. Thanks man!

  • @sm-pz8er
    @sm-pz8er 9 หลายเดือนก่อน

    Very well explained

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

    finally the video i was looking for!!!

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

    Great video, would like to know how testing would be performed, say the person updated the a func that is calling some internal api which is not accessible from that person's local system. So in such cases will owner need to test the change and then merge the request ?

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

    thank you this was very helpfull and good explained

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

    if the original repository is updated (either there's a merge or updates by the maintainer of the original repository), will other repositories that fork from this repository will get updated of the changes as well on their local repository?

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

    Nice and clear thank you for this

  • @NK-wl1zh
    @NK-wl1zh ปีที่แล้ว

    excellent explanation!

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

    Thank you!
    Great and well explained video!

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

    Thank you brother, very much !

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

    awesome video! thx!

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

    good one

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

    Hey Avil! Great Video, what are the differences between this videos and the one on your page?

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

      Hey Rafa! The GitHub videos on youtube a shortened, concise version of the actual course. TheCodex course on Git and GitHub covers a lot more content in-depth :)

  • @rolanddosa9950
    @rolanddosa9950 4 ปีที่แล้ว

    Clear example, thanks

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

    amazing thank u

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

    The fork button is not enabled in my repository.

  • @mazikowski
    @mazikowski 4 ปีที่แล้ว

    Solid explanation!

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

    Thanks a lot for this. Very nice tutorial :)

  • @Mr.Ethico
    @Mr.Ethico 3 ปีที่แล้ว

    Thanks

  • @laxkompala
    @laxkompala 4 ปีที่แล้ว

    When any changes/updates made to master branch will that be merged to fork automatically?

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

      if the changes in the fork are committed and pushed to the master branch of the fork then yes.

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

    Difference btw forking and cloning??

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

    nailed it !

  • @fahadbinfaiz7194
    @fahadbinfaiz7194 4 ปีที่แล้ว

    Awesome video ... Thank u so much for this video :-)

  • @saNasTech
    @saNasTech 5 ปีที่แล้ว

    Can i have a repository which cannot be accessible by anyone except specific people ?

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

      Killaken is absolutely right - You can create a private repo that no one can view except your collaborators.

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

    What if i want to fork my file or code in a repo

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

    this is a great video. You should try and contribute to Traversy Media in order to pull more traffic :)

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

    great

  • @OurCloudSchool-Hindi
    @OurCloudSchool-Hindi 4 ปีที่แล้ว

    how do I do that with the command line?

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

    👍👍❤

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

    Always remember we must repent of our sins (sin is transgression The Law Of Yahuah The Father in Heaven. The Law are The Books: Genesis, Exodus, Leviticus, Numbers, & Deuteronomy). We must repent of our sins and Have Belief On Yahusha The Messiah. HE Died and Rose three days later so that we can be forgiven of our sins!
    Come to HIM

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

    For fork sake.

  • @metaobserver657
    @metaobserver657 4 ปีที่แล้ว

    defs not for non native English speakers..