Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example of Creating a Pull Request #16

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##########################################################
# DON'T MAKE CHANGES #
# DON'T MAKE CHANGES BELOW #
##########################################################

TARGET ?= a.out
Expand All @@ -22,3 +22,7 @@ clean:
$(RM) $(TARGET) $(OBJS) $(DEPS)

-include $(DEPS)

##########################################################
# DON'T MAKE CHANGES ABOVE #
##########################################################
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

## Hunter CS Catalog
_What do I even need to graduate?_
The interactive program to help you answer that question figure out the classes
The interactive program to help you answer that question and figure out the classes
you need to finish getting your degree.
Able to check:
- What kind of CS classes are needed to graduate.
Expand All @@ -18,8 +18,17 @@ Able to check:
We're planning to use the terminal interface to test-out all implemented features for now before beginning to host it on the web, possibly with react or flask.

### Contribute
Take a look at [CONTRIBUTE.MD](https://github.com/Hunter-Open-Source-Club/hacktoberfest21.cpp/blob/main/CONTRIBUTING.md) for contribution guidelines and the [Issues](https://github.com/Hunter-Open-Source-Club/hacktoberfest21.cpp/issues)
Take a look at [CONTRIBUTING.MD](https://github.com/Hunter-Open-Source-Club/hacktoberfest21.cpp/blob/main/CONTRIBUTING.md) for contribution guidelines and the [Issues](https://github.com/Hunter-Open-Source-Club/hacktoberfest21.cpp/issues)
of the repository to see what you can add to the project!

### Get Started

1. `Fork` the repository
2. `Clone` the repository by typing `git clone https://github.com/(username)/hacktoberfest21.cpp.git` or `git clone [email protected]:(username)/hacktoberfest21.cpp.git` into your terminal depending on if you're using HTTPS or SSH respectively.
3. After making your changes and `commit` to the dev branch
4. Create a `pull request` to this repo from the fork

---

### Note that we're prioritizing PR's from Hunter College students or the greater CUNY community.
For more information, or if you get stuck and need help, go to https://discord.gg/PwrkJYkdAz where GDSC members help you! Feel free to email [email protected] with questions or concerns as well, just add `[Hacktoberfest]` to the subject line. Thanks for your help!!
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

int main(){
//add code here
std::cout << "what is your academic level?" << std::endl;

return 0;
}
1 change: 1 addition & 0 deletions src/test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//This is a test