This repo provides an example app for Android devices called Wallet App, and this app created with react native framework
This application contains the Splash, PIN login and Home/Account transaction display of wallet credit card app.
Fork Wallet app repo
Once you have forked the repo, you can make a clone
- Clone the Wallet app
cd
into theWallet app
folder- Make your changes and create a pull request
If you make changes in the fork and would like to sync those changes with the upstream repository, you must first configure the remote. This will be required when you have created local branches and would like to make a pull request to your upstream branch.
- In the Terminal (for Mac users) or command prompt (fow Windows and Linus users) type git remote -v to list the current configured remote repo for your fork.
git remote add upstream
https://github.com/yugin21/Wallet.git
to specify new remote upstream repository that will be synced with the fork. You can typegit remote -v
to verify the new upstream..
If there are changes made in the Original repository, you can sync the fork to keep it updated with upstream repository.
- In the terminal, change the current working directory to your local project
- Type
git fetch upstream
to fetch the commits from the upstream repository git checkout master
to checkout your fork's local master branch.git merge upstream/master
to sync your local master branch with upstream/master. Note: Your local changes will be retained and your fork's master branch will be in sync with the upstream repository.