• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Other] Problem with pulling from other repositories

  • 7
    Posts
    12
    Years
    • Seen Sep 17, 2023
    Hey,

    I'm pretty new to decomp hacking and run into a problem setting up the base for my project. So maybe I just tell you briefly what I've done so far. First I used this guide ([Tutorial] How to build the decomps using WSL (Win10) by Lunos) to set everything up and get a basic idea about what I need. After that I followed this tutorial (Pokeemerald How to start a project using DizzyEgg's works) to get a base to work with and learn how to deal with merge conflicts and set up my own repository. Then I've seen that there is already a merged version of DizzyEgg's works available in the rhh github. I've decided to clone this into a new folder, compile it and use it as my base from now on. I've also pushed this version in my own github repository to have an online back-up. I hope this is alright so far.
    [PokeCommunity.com] Problem with pulling from other repositories[PokeCommunity.com] Problem with pulling from other repositories

    Ok, now to my problem. How can I pull branches from other repositories to merge them with my master branch? And how can I push this branch into my own repository?

    For example I wanted to pull the "DS-Style party screen" from TheXaman.
    So I used the following commands:
    Code:
    git remote add xaman https://github.com/TheXaman/pokeemerald/
    Code:
    git pull xaman party_screen_ds_style2
    But then the following window pops up.
    [PokeCommunity.com] Problem with pulling from other repositories
    And honestly I have no idea what to do from now on. This hasn't happened when I followed the tutorial how to merge the item_expansion with the battle_engine. Have I forgotten something.
    I'd be very thankful if someone can point out what I've done wrong. Because I want to merge a few branches into my master branch to get various new features. :D

    But I have to say that decomp hacking looks like a very interesting topic. So far I'm only used to binary hacking. It's time to change that :)
     
    Last edited:
    For example I wanted to pull the "DS-Style party screen" from TheXaman.
    So I used the following commands:
    Code:
    git remote add xaman https://github.com/TheXaman/pokeemerald/
    Code:
    git pull xaman party_screen_ds_style2
    But then the following window pops up.
    View attachment 95748
    And honestly I have no idea what to do from now on.
    The commits you pulled were merged into your branch successfully, and now Git is making you store everything in a commit symbolizing the merge.
    What you're seeing is Nano, a command line based text editor.
    In it, you can modify the commit title if you want to, or leave it as is. Once you're done, just press Ctrl+X to complete the merge.
     
    Back
    Top