| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome ! Necto is a social app for college students.
% git clone https://github.com/rbezghin/projectX.git % cd projectX % pod install % pod update
% open projectX.xcworkspace
("git add ." works correctly only if you have the most up to date .gitignore)
% git add . # gets you "on branch someBranch" % git commit -m "message" # commits new code % git pull # gets your local branch up to date % git push # gets you remote branch up to date
% git checkout someBranch # gets you "on branch someBranch" % git pull origin master # gets you up to date with origin
Then go to https://github.com/rbezghin/projectX/pulls to open a pull request master <- someBranch so that we can review it.
| Back | FazBrowse Home | New Git URL |