Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

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

Expand Down Expand Up @@ -202,7 +201,6 @@ ln -s git-plus git-browse
ln -s git-plus git-pr-checkout
ln -s git-plus git-clone-org
ln -s git-plus git-batch-clone
ln -s git-plus git-back
ln -s git-plus git-issue-list
ln -s git-plus git-issue-create
ln -s git-plus git-issue-edit
Expand Down Expand Up @@ -260,7 +258,6 @@ Copy-Item "$binPath\git-plus.exe" "$binPath\git-browse.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-pr-checkout.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-clone-org.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-batch-clone.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-back.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-list.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-create.exe"
Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-edit.exe"
Expand Down
55 changes: 0 additions & 55 deletions cmd/branch/back.go

This file was deleted.

168 changes: 0 additions & 168 deletions cmd/branch/back_test.go

This file was deleted.

9 changes: 0 additions & 9 deletions doc/commands/branch.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,6 @@ git recent -h # ヘルプを表示

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

## git back

前のブランチやタグに戻ります。`git checkout -` のショートカットで、ブランチやタグ間の素早い移動に便利です。

```bash
git back
git back -h # ヘルプを表示
```

## git sync

現在のブランチをリモートのデフォルトブランチ(main/master)の最新状態と同期します。
Expand Down
1 change: 0 additions & 1 deletion setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ $commands = @(
"git-pr-checkout",
"git-clone-org",
"git-batch-clone",
"git-back",
"git-abort",
"git-issue-list",
"git-issue-create",
Expand Down
1 change: 0 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ commands=(
"git-pr-checkout"
"git-clone-org"
"git-batch-clone"
"git-back"
"git-abort"
"git-issue-list"
"git-issue-create"
Expand Down
Loading