Skip to content

Commit

Permalink
add usefull-git-commands
Browse files Browse the repository at this point in the history
update
  • Loading branch information
EkeMinusYou committed May 11, 2024
1 parent 79c8461 commit 4fef667
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions content/posts/20250511-usefull-git-commands/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
title: "Git/GitHubの便利コマンドを紹介!"
date: 2024-05-11T16:59:47+09:00
tags: ["cli", "GitHub", "fzf"]
---


## はじめに

よく使っている便利コマンドをいくつか紹介します。

自分はzshのaliasに登録して、すぐ呼び出せるようにしています。

github cli とfzfの導入が必要です。

### デフォルトブランチに移動する

リポジトリによって、デフォルトブランチがmainとmasterがバラバラだったりするので。

```shell
git switch $(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name)
```

## fzfでブランチリストを出してswich

```shell
git branch | fzf --reverse --height 50% | xargs git switch
```

## デフォルトブランチからrebaseする

```shell
git pull --rebase origin $(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name)
```

## fzfでstarしたリポジトリ一覧を出して、ブラウザで開く

気になるリポジトリはstarをつけますが、後になって探すのが、大変だったりするので、作りました。

```shell
gh api -X GET /user/starred --paginate --cache 24h | jq '.[].full_name' -r | fzf --reverse --height 50% | xargs gh repo view --web
```

## おわりに

以上、子ネタでした。

0 comments on commit 4fef667

Please sign in to comment.