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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Received: by 2002:a6b:5a02:: with SMTP id o2mr6075595iob.17.1543975631382; Tue, 04 Dec 2018 18:07:11 -0800 (PST) X-Received: by 2002:a9d:bd5:: with SMTP id 79mr369646oth.7.1543975631193; Tue, 04 Dec 2018 18:07:11 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.uzoreto.com!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!q69no215173itb.0!news-out.google.com!v141ni169ita.0!nntp.google.com!q69no215172itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 4 Dec 2018 18:07:10 -0800 (PST) In-Reply-To: <3790db70-0f76-4f33-8ded-642dfeae9ca3@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=98.118.241.43; posting-account=QF6XPQoAAABce2NyPxxDAaKdAkN6RgAf NNTP-Posting-Host: 98.118.241.43 References: <9cc33ea4-0164-4568-9295-c051342aed23@googlegroups.com> <3790db70-0f76-4f33-8ded-642dfeae9ca3@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: ANN: Awesome-Ada From: Jere Injection-Date: Wed, 05 Dec 2018 02:07:11 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:54957 Date: 2018-12-04T18:07:10-08:00 List-Id: On Monday, December 3, 2018 at 6:44:38 PM UTC-5, Olivier Henley wrote: > 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 I tried doing the steps above and it gave me a permission denied error. If you are interested, here is the markdown for some online ada compilers: ## Online Compilers - [TutorialsPoint Ada Compiler](https://www.tutorialspoint.com/compile_ada_online.php) - Online compiler built on the CodingGround engine - [JDoodle Ada Compiler](https://www.jdoodle.com/execute-ada-online) - Online compiler that provides multiple versions of GNAT to test with. You can edit the text however you like