Add yourself to the list of contributors in this repo. Tell us where your primary GIT account is or some other public facing social account you use, like Twitter, Facebook, StackOverflow, etc. A sentence on how you would like to help, or need help.
IMPORTANT: THIS LIST IS PUBLIC. DO NOT ADD ANY CONTACT DETAILS
Only add a url and a description of your interest.
contributors
yourOwnRepo/contributors
Public
Clone it locally.
git clone git@gitlab.com:yourOwnRepo/contributors
Enter it. cd contributors
Install our CLI tools.
npm i -g @elioway/bones @elioway/thing
View the existing list using our CLI tools.
bones readT contributors
bones listT contributors --mainEntityOfPage=Person
bones takeonT contributors TimBushell --mainEntityOfPage=Person
# No need for the `Person` part. Don't fill these fields out.
bones updateT TimBushell --Person=""
# If not a git repo, somewhere public where we can find you.
bones updateT TimBushell --url="https://gitlab.com/timitee"
# Briefly - how you would like to help.
bones updateT TimBushell --description="I would like to be a leader in the elioWay"
bones listT contributors --mainEntityOfPage=Person
Commit and push your changes to your own repo. This is a shared place to communicate with other contributors. Feel free to submit other notes or observations.
Submit a merge request. e.g.:
https://gitlab.com/yourOwnRepo/contributors/-/merge_requests
git remote add upstream git@gitlab.com:elioway/contributors.git
git pull upstream main
git push upstream main
We use gitlab. You don't need a gitlab account but it will help. Or perhaps you already have a gitlab account, but would like to set up a different account, using a different SHA key... this is how you can maintain different keys for more than one GIT account.
Edit or create ~/.ssh/config
Host gitlab.com
HostName gitlab.com
User git
IdentityFile ~/.ssh/main
Host gitlab.ACCT1
HostName gitlab.com
User git
IdentityFile ~/.ssh/key1
Host gitlab.ACCT2
HostName gitlab.com
User git
IdentityFile ~/.ssh/key2
Host github.ACCT3
HostName github.com
User git
IdentityFile ~/.ssh/key3
then make sure you set the right remote URL to each of your repo:
git remote set-url origin git@gitlab.ACCT1:myACCT1/myACCT1repo.git