Yusō, was built as a collaborative project for enhancements in public transport.
Pulkit Sambhavi Singh 💻 | Pranjal Datta 💻 | Aniket Sinha 💻 | Akshat Joshi 💻 |
- Make sure that your changes do not conflict with the core files (changing file directories will require a change in all called paths)
- Follow the original code structure
- Refactoring contributions are welcome, explicitly mention "[Refractor]" in your pull request
- Give a few days to review PRs, code reviews are welcome
$ git checkout master
$ git pull
If you fork is behind from the master project you can do these to get the latest version in the master branch of your fork. First go to your(cloned) project folders. Open the terminal in this directory then enter the following commands in the terminal:
-
Configuring a remote for fork
$ git remote -v //Lists the current configured remote repository for your fork// $ git remote add upstream https://github.com/Purukitto/Yuso_TravelApp.git //Specifies a new remote upstream repository that will be synced with the fork// $ git remote -v //Should show the newly made remote *upstream* along with your previous remote//
-
Syncing the fork
$ git fetch upstream //Fetch the branches and their respective commits from the upstream repository// $ git checkout master //Switches to local master branch// $ git merge upstream/master //Merges the upstearm remote (Main repo) into your local fork//