0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

aliasを使ってコマンドを短縮する

Posted at

背景

git pushやdocker-composeなどのコマンド毎回打つのはめんどうだな……と思い、先輩から教えてもらったaliasとやらを作成してみる。

**初心者の備忘録として書いておりますので、間違いがある可能性があります。ご了承ください。

手順

echo $SHELL

で自分のシェルを確認。
シェルとはシェルスクリプトのことで、ユーザーの命令とOSに伝えるプログラムです。受付のおねーさんのようなものです。

シェルには「bash」や「zsh」などあります。私はbashデシタ。

vi .bashrc

vimコマンドで設定ファイルを開く。

alias ga='git add .'

こんな感じで付け加えればOK

ちなみに私はこんな感じで登録してます。

alias dc='docker-compose'
alias gpo='git push origin'
alias gl='git log'

最後に

コマンドが短縮されてめちゃくちゃ作業効率上がったような気がします。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?