This is a repository dedicated for new members of the ACM at CSUF
- Open Source Software Team to make their first contributions to the
- acmcsufoss org! Let us walk through the steps so you can make your first
- commit, pull request, or issue closing to become a contributor of our
- beloved community!
+ Open Source Software Team to make their first
+ contributions to the acmcsufoss org! Let us walk through the steps so you
+ can make your first commit, pull request, or issue closing to become a
+ contributor of our beloved community!
+ Instructions on how to contribute can be found in the
+ README. If you have
+ any questions, feel free to ask in the
+ #first-contributions channel in
+ our Discord server.
- This is a repository dedicated for new members of the ACM at CSUF
- Open Source Software Team to make their first contributions to the
- acmcsufoss org! Let us walk through the steps so you can make your first
- commit, pull request, or issue closing to become a contributor of our
- beloved community!
-
+
+ This is a repository dedicated for new members of the ACM at CSUF
+ Open Source Software Team to make their first
+ contributions to the acmcsufoss org! Let us walk through the steps so you
+ can make your first commit, pull request, or issue closing to become a
+ contributor of our beloved community!
+
+ Instructions on how to contribute can be found in the
+ README. If you have
+ any questions, feel free to ask in the
+ #first-contributions channel in
+ our Discord server.
+
+
diff --git a/style.css b/style.css
index 518a291..113e41f 100644
--- a/style.css
+++ b/style.css
@@ -22,11 +22,13 @@
--color-secondary: #e5e5e5;
--color-contrast: #393939;
--color-oss-team: #11d4b1;
+ --color-link: #0097a7;
@media (prefers-color-scheme: dark) {
--color-primary: #1a1a1a;
--color-secondary: #2d2d2d;
--color-contrast: #f5f5f5;
+ --color-link: #4dd0e1;
}
}
@@ -46,6 +48,14 @@ h1 {
text-align: center;
}
-p > b {
+p > b.oss {
color: var(--color-oss-team);
}
+
+a {
+ color: var(--color-link);
+}
+
+ul li p img {
+ width: 1.5rem;
+}
From fb1152acd931d62ca37d7610be4034d5d9571d4a Mon Sep 17 00:00:00 2001
From: Tomas Oh <112128328+tomasohCHOM@users.noreply.github.com>
Date: Wed, 14 Feb 2024 12:31:21 -0800
Subject: [PATCH 2/3] Update README.md
---
README.md | 35 ++++++++---------------------------
1 file changed, 8 insertions(+), 27 deletions(-)
diff --git a/README.md b/README.md
index bdef56d..368058e 100644
--- a/README.md
+++ b/README.md
@@ -1,80 +1,61 @@
# 1st | First Contributions to acmCSUF
-
-
`oss.acmcsuf.com/1st` aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below. If you're not comfortable with command line, [here are tutorials using GUI tools](https://github.com/firstcontributions/first-contributions/blob/main/README.md#tutorials-using-other-tools). If you don't have Git on your machine, [install it](https://docs.github.com/en/get-started/getting-started-with-git/set-up-git).
-
## Welcome to ACM!
-
-
ACM at CSUF provides a social online platform, Discord, that brings passionate Titans together to engage in multiple conversations regarding our community, the tech field, and many more. Join [our Discord server](https://acmcsuf.com/discord) to learn more about future events, meet new people, and get involved with the community!
-
## Fork `oss.acmcsuf.com/1st`
-
+
-![image](https://github.com/EvanCPSC/1st/assets/142952307/bfd366f9-8f05-4c51-ae3f-2928fbf6c0f0)
Fork the repository by clicking on the fork button on the top of [`oss.acmcsuf.com/1st`'s page on GitHub](https://github.com/acmcsufoss/1st). This will create a copy of this repository in your account.
-
## Clone the repository
-
+
-![image](https://github.com/EvanCPSC/1st/assets/142952307/6725515a-0d2f-4e30-8552-d94fd65e7352)
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
Open a terminal and run the following git command: git clone "url you just copied" where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
-![image](https://github.com/EvanCPSC/1st/assets/142952307/fc40d06a-62d5-4ca3-bfcc-e80b3831f7d0)
+
+
For example:
`git clone https://github.com/this-is-you/acmcsuf.com.git`
where `this-is-you` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.
-
## Create a branch
-
-
Change to the repository directory on your computer (if you are not already there): `cd acmcsuf.com`
Now create a branch using the git switch command: `git switch -c your-new-branch-name`
For example: `git switch -c add-ethanthatonekid`
-
## Make necessary changes and commit them
-
-
-
-
## Push changes to GitHub
-
-
Push your changes using the command `git push`:
`git push origin -u add-your-branch-name`
replacing `` with the name of the branch you created earlier.
-
## Submit your changes for review
-
-
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
-![image](https://github.com/EvanCPSC/1st/assets/142952307/fa97c205-7bde-45d6-94ce-141c98b14832)
+
+
Now submit the pull request.
-![image](https://github.com/EvanCPSC/1st/assets/142952307/7a6cde83-7287-4cdb-9adb-995675969f5f)
+
+
Soon, someone will be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
From 4e03e67156f553a24627bcb0f2b5739857234849 Mon Sep 17 00:00:00 2001
From: Chom <112128328+tomasohCHOM@users.noreply.github.com>
Date: Wed, 14 Feb 2024 12:38:38 -0800
Subject: [PATCH 3/3] Prettified README
---
README.md | 48 +++++++++++++++++++++++++++++++++++-------------
1 file changed, 35 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
index 368058e..ddfb878 100644
--- a/README.md
+++ b/README.md
@@ -1,24 +1,40 @@
# 1st | First Contributions to acmCSUF
-`oss.acmcsuf.com/1st` aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below. If you're not comfortable with command line, [here are tutorials using GUI tools](https://github.com/firstcontributions/first-contributions/blob/main/README.md#tutorials-using-other-tools). If you don't have Git on your machine, [install it](https://docs.github.com/en/get-started/getting-started-with-git/set-up-git).
+`oss.acmcsuf.com/1st` aims to simplify and guide the way beginners make their
+first contribution. If you are looking to make your first contribution, follow
+the steps below. If you're not comfortable with command line,
+[here are tutorials using GUI tools](https://github.com/firstcontributions/first-contributions/blob/main/README.md#tutorials-using-other-tools).
+If you don't have Git on your machine,
+[install it](https://docs.github.com/en/get-started/getting-started-with-git/set-up-git).
## Welcome to ACM!
-ACM at CSUF provides a social online platform, Discord, that brings passionate Titans together to engage in multiple conversations regarding our community, the tech field, and many more. Join [our Discord server](https://acmcsuf.com/discord) to learn more about future events, meet new people, and get involved with the community!
+ACM at CSUF provides a social online platform, Discord, that brings passionate
+Titans together to engage in multiple conversations regarding our community, the
+tech field, and many more. Join
+[our Discord server](https://acmcsuf.com/discord) to learn more about future
+events, meet new people, and get involved with the community!
## Fork `oss.acmcsuf.com/1st`
-Fork the repository by clicking on the fork button on the top of [`oss.acmcsuf.com/1st`'s page on GitHub](https://github.com/acmcsufoss/1st). This will create a copy of this repository in your account.
+Fork the repository by clicking on the fork button on the top of
+[`oss.acmcsuf.com/1st`'s page on GitHub](https://github.com/acmcsufoss/1st).
+This will create a copy of this repository in your account.
## Clone the repository
-Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
+Now clone the forked repository to your machine. Go to your GitHub account, open
+the forked repository, click on the code button and then click the _copy to
+clipboard_ icon.
-Open a terminal and run the following git command: git clone "url you just copied" where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
+Open a terminal and run the following git command: git clone "url you just
+copied" where "url you just copied" (without the quotation marks) is the url to
+this repository (your fork of this project). See the previous steps to obtain
+the url.
@@ -26,13 +42,15 @@ For example:
`git clone https://github.com/this-is-you/acmcsuf.com.git`
-where `this-is-you` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.
+where `this-is-you` is your GitHub username. Here you're copying the contents of
+the first-contributions repository on GitHub to your computer.
## Create a branch
-Change to the repository directory on your computer (if you are not already there): `cd acmcsuf.com`
-Now create a branch using the git switch command: `git switch -c your-new-branch-name`
-For example: `git switch -c add-ethanthatonekid`
+Change to the repository directory on your computer (if you are not already
+there): `cd acmcsuf.com` Now create a branch using the git switch command:
+`git switch -c your-new-branch-name` For example:
+`git switch -c add-ethanthatonekid`
## Make necessary changes and commit them
@@ -45,11 +63,13 @@ Push your changes using the command `git push`:
`git push origin -u add-your-branch-name`
-replacing `` with the name of the branch you created earlier.
+replacing `` with the name of the branch you created
+earlier.
## Submit your changes for review
-If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
+If you go to your repository on GitHub, you'll see a `Compare & pull request`
+button. Click on that button.
@@ -57,12 +77,14 @@ Now submit the pull request.
-Soon, someone will be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
+Soon, someone will be merging all your changes into the master branch of this
+project. You will get a notification email once the changes have been merged.
---
### CONGRATULATIONS ON MAKING YOUR FIRST CONTRIUBUTION
-Inspired by [First Contributions](https://github.com/firstcontributions/first-contributions#readme)
+Inspired by
+[First Contributions](https://github.com/firstcontributions/first-contributions#readme)
Maintained with 💚 by [**@acmcsufoss**](https://github.com/acmcsufoss)