Skip to content

Commit

Permalink
automatically include contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Aug 26, 2024
1 parent 93d52e3 commit aa188bd
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 71 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ _jenkinsfile_sh:
###

# Will need to edit this
_contributors:
contributors.txt: *.el *.org
@git log --format='- %an' HEAD^@ | \
sort | \
grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' | \
uniq
sort -u | \
grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' > $@

###

Expand Down
57 changes: 57 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
* ssh-config-mode-el/README
:PROPERTIES:
:CUSTOM_ID: ssh-config-mode-elreadme
:END:
[[https://melpa.org/#/ssh-config-mode][[[https://melpa.org/packages/ssh-config-mode-badge.svg]]]]

[[https://github.com/jhgorrell/ssh-config-mode-el/actions/workflows/10-run-tests.yml][[[https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg]]]]

A mode to edit SSH config files.

It does the following:

- Fontifys the SSH config keywords.
- Keys for skipping from host section to host section.
- Indentation of configuration found in the following locations:

#+begin_example
.ssh/config
sshd?_config
known_hosts
authorized_keys2?
#+end_example

If you have a SSH config file that you'd like to use this mode on
automatically, add this line as the first one in the file:

#+begin_example
# -*- mode: ssh-config -*-
#+end_example

Or add somthing like this to your init file:

#+begin_example
(add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode))
#+end_example

** Links
:PROPERTIES:
:CUSTOM_ID: links
:END:
- [[https://github.com/peterhoeg/ssh-config-mode-el]]
- [[https://github.com/openssh/openssh-portable]]

** License
:PROPERTIES:
:CUSTOM_ID: license
:END:
=ssh-config-mode-el= is distributed under the
[[https://www.gnu.org/licenses/gpl-3.0.txt][GPL-3.0]] (or any later
version.)

** Contributors
:PROPERTIES:
:CUSTOM_ID: contributors
:END:

#+INCLUDE: contributors.txt
67 changes: 0 additions & 67 deletions README.rst

This file was deleted.

15 changes: 15 additions & 0 deletions contributors.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- Eder Elorriaga
- Harley Gorrell
- Heinz Deinhart
- iory
- John Mastro
- Masahiro Hayashi
- Matthew Weaver
- Peter Hoeg
- Peter Oliver
- Sharif Nassar
- Ted Carnahan
- USAMI Kenta
- Ville Skyttä
- Wieland Hoffmann
- Александар Симић

0 comments on commit aa188bd

Please sign in to comment.