-
Notifications
You must be signed in to change notification settings - Fork 60
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
Add new member to the CNERG website #140
Comments
(this is a some test, to see how to link this with some project management tool...) |
This is good information. I'm not sure how @gonuke is instructing new members to add themselves (and if this issue is being referenced). Perhaps the above steps could go into a |
My two cents:
This is all to say: let's just close this issue. |
I'm just going for it and seeing if we need to reopen. |
I was going to close it after finding out if the information is given to new students elsewhere, which you've let us know! I'm good with this remaining closed and not being added into the repo as a README.md |
Add yourself to the CNERG website
git clone https://github.com/<github_username>/cnerg.github.com
If you don’t have git on your machine, you can get it with
sudo apt-get install git
git branch add_myself
git checkout add_myself
Note that steps 4 and 5 can be completed simultaneously with
git checkout -b add_myself
6.Descend into the directory where the source markdown (
*.md
) files for staff and students are located.cd community/people
mkdir <my_initials>
(replace<my_initials>
with your initials)cd <my_initials>
index.md
, which will be your personal page. It is probably a good idea to use someone else’s markdown file as a template. Your personal page should contain your name, contact information, research interests and/or projects being worked on, and education._data/people.yml
. This file currently has different sublists of people based on their role in CNERG. Each entry should include aname
,url
- this is the directory that you created, e.g.<my_initals>
,image
- this is the image that will be used on the page of all group members, androle
- this is your title and or description of your role in CNERG.README.md
to test locallygit add <new_or_modified_files>
git commit -m “Added <my_name>”
Push your new branch to your github fork.
git push -u origin add_myself
If your fork already contains the branch and you are only updating it with new commits, then git push by itself is sufficient.
main
branch in the main repo. This can be done by using a web browser to navigate to your new branch on your fork and clicking “Pull request”. This will allow other users to review the changes you made and make comments, request changes, or approve your changes. Once your PR has been created, you should be able to see it here.The text was updated successfully, but these errors were encountered: