Select an organization < check the repo, which is already mention in the organization < click fork < after forking, the same repo copy will be added to your personal github account repo < we chould clone repo < so open git bash in desired file manager folder < then run
git clone repolink.git < the repo is successfully cloned to your local computer < then you can make contributions (openly). To fetch latest code use the command "git
pull origin 'main branch'" (double quotes). {It helps to fetch original->updated code from the main repo.} < Then you can do your other branch according to big issues, e.g., {fix/livechat-transfer-comment-wrap, feature/totp-field-identification}->according to issues that you solved. < To create a branch, you should run this command in terminal/powershell: <
git checkout -b feature/totp-field-identification. < To check git status for how many branches exist and which branch you are currently on, {
git status}, < then:
git add. <
git commit -m "perf(omnichannel): cache settings in Omnichannel Transcript. started() (10m TTL)"—this is the format to commit and it will be your PR (pull request title). <
git push origin -u {first time push} "branch" (remove double quote) < After doing your latest code submit in your branch repo, you can see at the top "pull
& request." Click and creat pull request. {{Title: commit message...Description tell how to approach}} < You will be all checked by AI, then see a green tick....
YOU CAN CREATE ISSUE.
Click the new issue button < you can write a title and description < the label will be auto-applied ...
Comments
Post a Comment