Skip to content

Commit c6cf812

Browse files
authored
Merge pull request #10 from tonbiattack/remove-back
feat: `git back` コマンドを削除し、関連するドキュメントを更新
2 parents 80ace77 + 32dd23f commit c6cf812

6 files changed

Lines changed: 0 additions & 237 deletions

File tree

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Git の日常操作を少しだけ楽にするための拡張コマンド集で
2424
- `git rename-branch` - 現在のブランチ名を安全に変更し、--push でリモートも更新
2525
- `git delete-local-branches` - マージ済みローカルブランチをまとめて削除
2626
- `git recent` - 最近使用したブランチを時系列で表示して切り替え
27-
- `git back` - 前のブランチやタグに戻る(`git checkout -` のショートカット)
2827
- `git sync` - リモートのデフォルトブランチと同期(rebase使用)
2928
- `git abort` - 進行中の rebase / merge / cherry-pick / revert を自動判定して中止
3029

@@ -202,7 +201,6 @@ ln -s git-plus git-browse
202201
ln -s git-plus git-pr-checkout
203202
ln -s git-plus git-clone-org
204203
ln -s git-plus git-batch-clone
205-
ln -s git-plus git-back
206204
ln -s git-plus git-issue-list
207205
ln -s git-plus git-issue-create
208206
ln -s git-plus git-issue-edit
@@ -260,7 +258,6 @@ Copy-Item "$binPath\git-plus.exe" "$binPath\git-browse.exe"
260258
Copy-Item "$binPath\git-plus.exe" "$binPath\git-pr-checkout.exe"
261259
Copy-Item "$binPath\git-plus.exe" "$binPath\git-clone-org.exe"
262260
Copy-Item "$binPath\git-plus.exe" "$binPath\git-batch-clone.exe"
263-
Copy-Item "$binPath\git-plus.exe" "$binPath\git-back.exe"
264261
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-list.exe"
265262
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-create.exe"
266263
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-edit.exe"

cmd/branch/back.go

Lines changed: 0 additions & 55 deletions
This file was deleted.

cmd/branch/back_test.go

Lines changed: 0 additions & 168 deletions
This file was deleted.

doc/commands/branch.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,6 @@ git recent -h # ヘルプを表示
7878

7979
引数は不要です。頻繁に複数のブランチを行き来する場合や、最近作業していたブランチ名を思い出せない場合に便利です。
8080

81-
## git back
82-
83-
前のブランチやタグに戻ります。`git checkout -` のショートカットで、ブランチやタグ間の素早い移動に便利です。
84-
85-
```bash
86-
git back
87-
git back -h # ヘルプを表示
88-
```
89-
9081
## git sync
9182

9283
現在のブランチをリモートのデフォルトブランチ(main/master)の最新状態と同期します。

setup.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ $commands = @(
9494
"git-pr-checkout",
9595
"git-clone-org",
9696
"git-batch-clone",
97-
"git-back",
9897
"git-abort",
9998
"git-issue-list",
10099
"git-issue-create",

setup.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ commands=(
9797
"git-pr-checkout"
9898
"git-clone-org"
9999
"git-batch-clone"
100-
"git-back"
101100
"git-abort"
102101
"git-issue-list"
103102
"git-issue-create"

0 commit comments

Comments
 (0)