Google-Developer-Student-Club-CCOEW / Android-2023-GDSC-CUMMINS-X-GDSC-MMCOE

Welcome to the Hacktoberfest Android Cohort for Cummins College and MMCOE students! To request issue assignment, create a pull request, providing: 1. Full Name πŸ§‘β€πŸŽ“ 2.Email πŸ“§ 3.College ID (RNO) πŸ”’ 4.Branch of Study.πŸ“š 5. Year πŸ“† .The Cummins College and MMCOE students' PRs will be considered only. Thank you!
0 stars 8 forks source link
hacktoberfest hacktoberfest-accepted hacktoberfest2023 hacktoberfest2023-accepted

Android-2023

How to contribute

hacto

Contributing to this Repo

1. Fork this repository.

2. Clone the forked repository.

git clone https://github.com/<your-github-username>/Android-2023-GDSC-CUMMINS-X-GDSC-MMCOE.git

3. Navigate to the project directory

For Mini Projects:

cd Mini-Project

For SIH Evaluation Application:

cd /

4. Open Folder into Android Studio

5. Creating a new branch (IMP) 🌱 This is one of the very important step that you should follow to contribute in Open Source. A branch helps to manage the workflow, isolate your code and does not creates a mess. To create a new branch:

$ git branch <name_of_branch>
$ git checkout <name_of_branch>

Keep your cloned repo upto date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)

git pull origin main

6. Make changes in source code. πŸš€

7. Stage your changes and commit πŸ“

# Add changes to Index
git add .

# Commit to the local repo
git commit -m "<your_commit_message>"

8. At this point you can use the git push command to push the changes to the current branch of your forked repository:

git push origin <branch-name>

9. Create a Pull Request/PR πŸ› οΈ

10. Congratulations! πŸŽ‰ Sit and relax, you've made your contribution to Android Development repository of GDSC Cummins under hacktoberfest 2023. 🌟