Enhance your phone usage experience
2024 Capstone Design Project with Sua Kim
First, clone this repository from GitHub:
git clone https://github.com/jeonghyeonee/Groupify.gitList all existing branches:
git branchCreate and switch to a new branch using the format ID/IssueName/IssueNumber:
git checkout -b <ID/IssueName/IssueNumber>
# git checkout -b jeonghyeonee/UpdateReadMe/3Verify the new branch:
git branch -vSwitch to another branch:
git checkout <branch-name>Add all modified files:
git add .Add a specific file:
git add <file-name>Commit the changes with a message:
git commit -m "Enter your commit message here"Push changes to the remote repository:
git push origin <branch-name>After pushing your changes, go to the GitHub repository and click the "Pull Request" button to create a Pull Request.
Ensure the Pull Request:
- Describes the changes and implemented functionality.
- Uses proper comments in the code.
- Has no unchanged old code.
Request code reviews from your team members. Address feedback and update the Pull Request as necessary.
- Clone the repository.
- Create and switch to a new branch.
- Modify the code and commit your changes.
- Push your changes and create a Pull Request.