From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a24:50c:: with SMTP id 12mr8489442itl.18.1543880676553; Mon, 03 Dec 2018 15:44:36 -0800 (PST) X-Received: by 2002:a9d:24c3:: with SMTP id z61mr283644ota.1.1543880676326; Mon, 03 Dec 2018 15:44:36 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.uzoreto.com!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.am4!peer.am4.highwinds-media.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!k10no667868itk.0!news-out.google.com!v141ni771ita.0!nntp.google.com!q69no669251itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 3 Dec 2018 15:44:35 -0800 (PST) In-Reply-To: <9cc33ea4-0164-4568-9295-c051342aed23@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=208.114.128.47; posting-account=MRPdDAoAAADUJmZVjnYaoafXFMadSeY1 NNTP-Posting-Host: 208.114.128.47 References: <9cc33ea4-0164-4568-9295-c051342aed23@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <3790db70-0f76-4f33-8ded-642dfeae9ca3@googlegroups.com> Subject: Re: ANN: Awesome-Ada From: Olivier Henley Injection-Date: Mon, 03 Dec 2018 23:44:36 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Bytes: 2777 X-Received-Body-CRC: 4065230919 Xref: reader01.eternal-september.org comp.lang.ada:54940 Date: 2018-12-03T15:44:35-08:00 List-Id: For those wondering how to 'make a pull request' 1. Install git. (https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) 1-a) Open a github account if you do not already have one. (not sure this step is mandatory though ...) 2. Open a git-bash prompt on windows (comes with the git installation on windows), a terminal on linux/mac 3. Execute: $ git clone https://github.com/ohenley/awesome-ada.git (you just cloned the repo) $ git checkout -b my-branch-to-edit-the-awesome-ada (you just created a personalized branch) $ git push origin my-branch-to-edit-the-awesome-ada (you just pushed the branch on github: the origin) $ git push --set-upstream origin my-branch-to-edit-the-awesome-ada (you just setted your branch as the upstream origin to receive your changes) $ cd awesome-ada 4. Edit the file readme.md using a text editor and add an awesome Ada project. Save the file. (the syntax is Markdown. https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) 5. Execute: $ git add . (you just added every change made) $ git commit -m 'I just added a new entry to the aweseome-ada' (you just commited a change to your own branch with some comments) $ git push (you just pushed the change to your branch, to github) 6. Go to https://github.com/ohenley/awesome-ada, 7. Click the 'Pull Request' button. Follow the directives (you will need to choose Base:Master and Compare:my-branch-to-edit-the-awesome-ada) 8. Click 'Create pull request' I will review your changes and accept the merge. Thx