How to change these files
Follow these steps:
-
In the github UI, click the "Fork" button, un-check the "Copy the main branch only" option, then click the green "Create Fork" button
-
Go to your shell command prompt and...
-
Grab the source you just forked
git clone -o your_github_id https://github.com/your_github_id/creators.git
-
Change into that folder
cd creators/
-
Tell it where the real source lives
git remote add creationid https://github.com/creationid/creators.git
-
Get any updatates needed
git checkout main
git fetch creationid
git merge creationid/main
-
make your own new branch
git checkout -b add-ids
-
Make the required changes and/or add new files:
vi creations/sunton.md creations/freenove.md README.md
-
Add your changes
git status
git add .
-
Commit them
git commit -m "Add NEwBoardName name and ID"
- Upload them into your own branch
git push your_github_id add-ids
- 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
How to change these files
Follow these steps:
In the github UI, click the "Fork" button, un-check the "Copy the main branch only" option, then click the green "Create Fork" button
Go to your shell command prompt and...
Grab the source you just forked
git clone -o your_github_id https://github.com/your_github_id/creators.gitChange into that folder
cd creators/Tell it where the real source lives
git remote add creationid https://github.com/creationid/creators.gitGet any updatates needed
git checkout maingit fetch creationidgit merge creationid/mainmake your own new branch
git checkout -b add-idsMake the required changes and/or add new files:
vi creations/sunton.md creations/freenove.md README.mdAdd your changes
git statusgit add .Commit them
git commit -m "Add NEwBoardName name and ID"git push your_github_id add-idsYour "git push..." will have shown you a URL on the screen (example below) - visit it and submit the form.