0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ubuntuにgitとGitHub CLIを入れる

Posted at

gitを入れます!ubuntuに!

環境

  • ubuntu22.04

gitのインストール

shell
sudo apt install git

でインストールできる。

shell
git --version

git version 2.34.1みたいな感じのが出力されたらOK

初期設定

shell
git config --global user.name ユーザー名
git config --global user.email メールアドレス

で初期設定を行う。

GitHub CLI

コマンドライン上でGitHubの操作を行えるCLIツールです。にわかなのでログインにしか使ってません。

インストール

shell
sudo apt install gh

でインストール。

ログイン

なんかgithubって定期的にパスワード入れなさいみたいなこと言われるんですけどアカウントのパスワードとはまた違うやつで、ちょっとよくわかんないですよね
それをどうにかしたい!そのためのgithub cliですよみなさん

shell
gh auth login

を実行して、選択肢をなんやかんやで選んでいって、ブラウザでログインしてコマンドライン上に出てたパスワード入れると完了。これでもう未来永劫謎ログインすることなく生きていけます。めでたしめでたし:v:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?