File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
202201ln -s git-plus git-pr-checkout
203202ln -s git-plus git-clone-org
204203ln -s git-plus git-batch-clone
205- ln -s git-plus git-back
206204ln -s git-plus git-issue-list
207205ln -s git-plus git-issue-create
208206ln -s git-plus git-issue-edit
@@ -260,7 +258,6 @@ Copy-Item "$binPath\git-plus.exe" "$binPath\git-browse.exe"
260258Copy-Item "$binPath\git-plus.exe" "$binPath\git-pr-checkout.exe"
261259Copy-Item "$binPath\git-plus.exe" "$binPath\git-clone-org.exe"
262260Copy-Item "$binPath\git-plus.exe" "$binPath\git-batch-clone.exe"
263- Copy-Item "$binPath\git-plus.exe" "$binPath\git-back.exe"
264261Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-list.exe"
265262Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-create.exe"
266263Copy-Item "$binPath\git-plus.exe" "$binPath\git-issue-edit.exe"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff 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)の最新状態と同期します。
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments