www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - PSA: If you are hosting your D project on github, don't forget to add

reply russhy <russhy gmail.com> writes:
To do that:

- Click on the option button in the About section of your project 
(homepage, on the right)
- Add the 'D' (or 'dlang' or both :p), tag under the Topics 
section

This makes it easy to discover D projects on github!
Mar 28 2021
next sibling parent reply russhy <russhy gmail.com> writes:

some C/C++ header files

- create a .gitattribute file
- add the following content:


```
*.h linguist-detectable=false
*.c linguist-detectable=false
*.hpp linguist-detectable=false
*.cpp linguist-detectable=false
```
Mar 28 2021
parent russhy <russhy gmail.com> writes:
On Sunday, 28 March 2021 at 22:32:53 UTC, russhy wrote:

 some C/C++ header files

 - create a .gitattribute file
 - add the following content:


 ```
 *.h linguist-detectable=false
 *.c linguist-detectable=false
 *.hpp linguist-detectable=false
 *.cpp linguist-detectable=false
 ```
little type: it's ``.gitattributes`` with an s
Mar 29 2021
prev sibling next sibling parent Imperatorn <johan_forsberg_86 hotmail.com> writes:
On Sunday, 28 March 2021 at 22:30:35 UTC, russhy wrote:
 To do that:

 - Click on the option button in the About section of your 
 project (homepage, on the right)
 - Add the 'D' (or 'dlang' or both :p), tag under the Topics 
 section

 This makes it easy to discover D projects on github!
+1
Mar 28 2021
prev sibling next sibling parent Chris Piker <chris hoopjump.com> writes:
On Sunday, 28 March 2021 at 22:30:35 UTC, russhy wrote:
 To do that:

 - Click on the option button in the About section of your 
 project (homepage, on the right)
 - Add the 'D' (or 'dlang' or both :p), tag under the Topics 
 section

 This makes it easy to discover D projects on github!
Ah, I forgot about topics. Thanks for the reminder :)
Mar 29 2021
prev sibling parent James Lu <jamtlu gmail.com> writes:
On Sunday, 28 March 2021 at 22:30:35 UTC, russhy wrote:
 To do that:

 - Click on the option button in the About section of your 
 project (homepage, on the right)
 - Add the 'D' (or 'dlang' or both :p), tag under the Topics 
 section

 This makes it easy to discover D projects on github!
There should be a D project github project template. GitHub project templates let people make a repo. It should have DUB set up and topics set up.
Apr 12 2021