You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
472 B

  1. # Execution-notes
  2. ### On Tue Jun 15 06:05:07 AM CEST 2021
  3. ```
  4. git init
  5. git remote add origin git@gitea.localhost:michelc/toychain.git
  6. export ASKPASS='ssh-askpass'
  7. git-crypt export-key -- - | gpg --symmetric --armor --output local.key.asc
  8. gpg --decrypt local.key.asc | xxd
  9. git add .gitattributes
  10. git crypt status
  11. git crypt lock
  12. gpg --decrypt local.key.asc | git-crypt unlock -
  13. git remote add toptal git@git.toptal.com:screening/Michel-Combes
  14. git push toptal master
  15. ```