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

Instruction suggestion #70

Open
gitcnd opened this issue May 18, 2024 · 1 comment
Open

Instruction suggestion #70

gitcnd opened this issue May 18, 2024 · 1 comment

Comments

@gitcnd
Copy link
Contributor

gitcnd commented May 18, 2024

How to change these files

Follow these steps:

  1. In the github UI, click the "Fork" button, un-check the "Copy the main branch only" option, then click the green "Create Fork" button

  2. Go to your shell command prompt and...

  3. Grab the source you just forked

    git clone -o your_github_id https://github.com/your_github_id/creators.git

  4. Change into that folder

    cd creators/

  5. Tell it where the real source lives

    git remote add creationid https://github.com/creationid/creators.git

  6. Get any updatates needed

    git checkout main
    git fetch creationid
    git merge creationid/main

  7. make your own new branch

    git checkout -b add-ids

  8. Make the required changes and/or add new files:

    vi creations/sunton.md creations/freenove.md README.md

  9. Add your changes

    git status
    git add .

  10. Commit them

git commit -m "Add NEwBoardName name and ID"

  1. Upload them into your own branch

git push your_github_id add-ids

  1. Create the PR

Your "git push..." will have shown you a URL on the screen (example below) - visit it and submit the form.

Username for 'https;//github․com': your_github_id
Password for 'https://your_github_id@github․com':
Enumerating objects: 10, done.
Counting objects: 100% (10/10), done.
Delta compression using up to 72 threads
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 1.09 KiB | 1.09 MiB/s, done.
Total 6 (delta 2), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
remote:
remote: Create a pull request for 'add-ids' on GitHub by visiting:
remote: https://github.com/your_github_id/creators/pull/new/add-ids
remote:
To https;//github․com/your_github_id/creators.git
* [new branch] add-ids -> add-ids

@tannewt
Copy link
Contributor

tannewt commented May 20, 2024

Feel free to make a PR to add this in the README. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants