a carpooling app, for Saint Mary's College of California.
//in the file main Directory do
pod init
//open the podfile and add the following
pod install
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'Carpooling' do
pod 'Firebase', '>= 2.5.0'
pod ‘Google/SignIn’
pod ‘GoogleMaps’
end
//To commit
git branch //this checks which branch you are on and make sure you are working on your branch
git checkout YOURBRANCHNAME //to go to your branch
git status //to see the status of the changes
git add YOURFILENAME //to add files to commit
git commit -m "YOUR MESSAGE" //to commit
git push origin YOURBRANCHNAME //to push it to master