Skip to content

saraluk/cs639-apartment-react-native-project

Repository files navigation

Instructions for Team Members

  1. Install NodeJS https://nodejs.org/en/
  2. Open Terminal
  3. cd to a folder where you want the project folder to be. For example,
cd Desktop/cs639
  1. Install expo commmand line tool, type following command
npm install expo-cli --global
  1. In terminal, type following command
git clone https://github.com/saraluk/cs639-apartment-react-native-project.git
  1. cd into cs639-apartment-react-native-project
cd cs639-apartment-react-native-project
  1. Install Dependencies
npm install
  1. To start working on a feature, create a new local branch in your computer important !
git checkout -b feat/[branch-name]
  1. To create your local branch in Github
git push --set-upstream origin feat/[branch-name]
  1. Start expo
expo start
  1. Open expo client on a device.Scan the QR code.

Begin Development

  • Open project in Text Editor (VSCode)
code .
  • Make changes
  • Stage and Commit Changes
git add .
git commit -m [commit-message]
git push

To get the most update changes from Master branch to your branch

git fetch
git merge origin/master

There might be confilcts, after they are fixed, stage and commit changes again

git add .
git commit -m [commit-message]
git push

After your branch has been merged to Master branch, do these:

git checkout master
git pull

Now your local repository has the most updated code from Master branch, then create new branch to work on something else (Do not use the branch that has already been merged, create new branch)

git checkout -b feat/[branch-name]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •