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?

More than 1 year has passed since last update.

[Git] 動作を試す 実行例13:configでコマンドのエイリアス(別名)を作成する

Last updated at Posted at 2023-04-30

Gitの動作を理解するために、Gitのコマンドを実際に試して、結果を見てみました。

1つの記事内で一連のGitコマンドが完結しているので、これら一連のコマンドを順に実行させて結果を見ることで、一連のGitの動作を実際に体感でき、一通り独習することが可能です。

※前回記事のリポジトリ状態からの続きになっています。

前回記事へ 目次へ:Git関連記事のまとめページ 次回記事へ

実行例

※コマンドのエイリアスを設定する
git config --global alias.mylog "log --oneline --graph --all"
git mylog
↓
結果: 
* 94996a0 (HEAD -> master) message4
* 20bbab7 message3
* 00cad71 message2
* 4ace194 message1

※外部コマンドを実行する
git config --global alias.mydir "!dir /b"
git mydir
↓
結果: 
      0 [main] dir (1056) D:\...\PortableGit\usr\bin\dir.exe: *** fatal error - cygheap base mismatch detected

※DOSコマンドは実行されない

-----

※コマンドのエイリアスを削除する
git config --global --unset alias.mydir

環境

Windows 10、PortableGit-2.40.0-64-bitを使用、全てローカルPC上で実施、GitHub等は不使用。

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?