This app helps the organizers in hosting a event, bootcamps, seminars, meetups or any other kind of gathering in efficient manner. App saves the time and cost of user by making event easily maintainable through a singe App.
Currently this App is planned to provide following features -
We will ask user for to add all the probable attendees in the event and also ask attendeees Github username. Readme files, wikis, forked projects, ownered projects etc will be fetched using the Github API and these information will be scanned for all the technological related terms like API, Netwroking, Deep Linking etc. A result will be given to user showing the top technologies that is popular among all the attendees (list of attendees added).
git clone https://github.com/YOUR_USERNAME/Eventerest.git
git init
When a repository is cloned, it has a default remote called origin
that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream
:
Open terminal or git bash in your local repository and set up the origin:
git remote add origin https://github.com/YOUR_USERNAME/Eventerest.git
Set the upstream
:
git remote add upstream https://github.com/HimanshuS01/Eventerest.git
Run git remote -v
to check the status, you should see something like the following:
origin https://github.com/YOUR_USERNAME/Eventerest.git (fetch)
origin https://github.com/YOUR_USERNAME/Eventerest.git (push)
upstream https://github.com/HimanshuS01/Eventerest.git(fetch)
upstream https://github.com/HimanshuS01/Eventerest.git (push)
To update your local copy with remote changes, run the following:
git fetch upstream
git merge upstream/master
This will give you an exact copy of the current remote, make sure you don't have any local changes.
git checkout master
git pull
git checkout -b branch_name
Build/Clean project
git add file_name
(avoid using git add .
)git commit -m "Message briefly explaining the feature"
git commit --amend
git push origin branch-name
git commit --amend
, push again and the pull request will edit automaticallyClick here to find the contributing guidelines for the project and follow them before sending a contribution.
Intent(MainActivity.this, Another_Activity.class)
.@id
instead of @+id
when referring to resources that have been already created in xml files.