diff --git a/notes/creer-un-depot-github-dans-le-dossier-courant.md b/notes/creer-un-depot-github-dans-le-dossier-courant.md new file mode 100644 index 0000000..fcfc706 --- /dev/null +++ b/notes/creer-un-depot-github-dans-le-dossier-courant.md @@ -0,0 +1,30 @@ +--- +title: Créer un dépôt GitHub dans le dossier courant +date: 2024-10-11T21:11:00 +tags: + - How-To + - Github + - Ligne-de-commande +description: Une petite commande qui permet de publier un dépôt git existant sur GitHub en s'appuyant sur la ligne de commande `gh` +stub: true +draft: true +--- + +Installer et configurer [la commande `gh`](https://cli.github.com/). + +```sh +gh repo create ${PWD##*/} --private --source=. --remote=upstream +``` + +Ajouter à `.zshrc` sous la forme d'un alias + +```sh +#GitHub +alias ghi="gh repo create ${PWD##*/} --private --source=. --remote=upstream" +``` + +Dans un dépôt existant (il faut avoir créé un dépôt : `git init`) + +```sh +ghi +```