Skip to content

Instantly share code, notes, and snippets.

@aquelito
aquelito / git-command.md
Last active July 6, 2024 07:10
GIT - Ligne de commande principale
title category
Git config
Git

Rappel

Ne pas oublier : l'aide en ligne de commande.

@umidjons
umidjons / youtube-dl-download-audio-only-on-best-quality.md
Last active March 9, 2024 07:54
Download Audio from YouTube with youtube-dl

Download Audio from YouTube

-i - ignore errors

-c - continue

-t - use video title as file name

--extract-audio - extract audio track

@shad0wuser
shad0wuser / ssl-nginx.md
Created November 6, 2017 20:44 — forked from umidjons/ssl-nginx.md
Get Free SSL Certificate & Configure Nginx to use it

Get Free SSL Certificate & Configure Nginx to use it

  • Register on GoGetSSL.
  • Choose SSL Certificates -> Domain Validation SSL from top menu.
  • On products table click Details button on row Comodo - Free SSL.
  • On the opening page click Create New Order button.
  • In the Product Configuration section choose: Product Type = SSL Certificates and Select Item = Comodo Trial SSL, then click Complete Order button.
  • On the opening page click Incomplete Orders link.
  • In the List of all your SSL certificates table click Generate button.
  • With Online CSR Generator generate CSR.
@shad0wuser
shad0wuser / github_quick_start.md
Last active January 2, 2018 19:54
First repository upload

…or create a new repository on the command line

echo "# load" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [copied web address]
git push -u origin master
@shad0wuser
shad0wuser / github_quick_start.md
Last active February 2, 2018 21:12 — forked from arn-ob/gitUpload.txt
Git Repository Upload Command

Add the files in your new local repository. This stages them for the first commit.

Change the current working directory to your local project. Initialize the local directory as a Git repository.

git init

Setting your commit email address and username in Git