SoniaBarasa / country-capital-quiz-game

This repository is for general learning purposes. Aim is to learn conventional way to write a python code.
1 stars 2 forks source link

Rename the repository to specify the name of the game #9

Closed SoniaBarasa closed 1 year ago

SoniaBarasa commented 1 year ago

This pull request changes the name of the repository and specifies the name of the game. Previously, the repository's name suggested that it was for learning python programming.

SoniaBarasa commented 1 year ago

Hello @alimanfoo and @ahernank , here I have created a pull request to rename the repository so it is more specific. What are your thoughts on the new suggested name?

ahernank commented 1 year ago

Another thought, here, you have updated the name of the repo but you will still have the old name on the local copy in your computer (i.e. local clone of the repo); as when we cloned it, we used an address that had the old name.

Although not strictly necessary (as git can deal with this) it is a good idea to avoid confusion and update your local copy to have the new name.

To do this, first see the URLs git uses to communicate with your local copy using git remote -v. These ones will be using the old name.

Then, you can use git remote set-url origin NEW_URL here, you want to replace NEW_URL with the new link git generates to communicate with the repo (e.g. allowing things like cloning repositories). You can find this one on the same place we used when cloning this repo initially.

After you have updated this, you can re-run git remote -v to confirm the links reflect your new name.

SoniaBarasa commented 1 year ago

Hello folks, am going to close this pull request because I have resolved the issue with the conflicting branches.