creationid / creators

Central place to register creation id creator ids. These are used to digitally identify anything.
https://creationid.org
BSD 2-Clause "Simplified" License
10 stars 33 forks source link

Instruction suggestion #70

Open gitcnd opened 4 months ago

gitcnd commented 4 months ago

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"

  11. Upload them into your own branch

    git push your_github_id add-ids

  12. 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 commented 4 months ago

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