Skip to content

Commit

Permalink
note: créer un dépôt github facilement
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-bouvier committed Oct 11, 2024
1 parent ae20dcd commit 4bd3a55
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions notes/creer-un-depot-github-dans-le-dossier-courant.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit 4bd3a55

Please sign in to comment.