皆さんは Github 等のリモートリポジトリをブラウザで開く時はどうされているでしょうか?
僕はここ最近、ターミナルからgit openコマンドを打つやり方が氣に入ってます。
(写真はgit openコマンドのREADMEから拝借)
git-open の使い方
- ターミナルを開き、プロジェクトのディレクトリに入っているのが前提
- (ブラウザでリポジトリを開きたい時に)
git open
と入力
terminal
cd path/to/my-app
git open
git-open のインストール方法
いくつかやり方があります。
-
コマンドの実行可能ファイルをダウンロードしてご自身のマシンのコマンド置き場に置く(
/usr/local/bin
、$HOME/bin
、/$HOME/.local/bin
等)- git-open作者推奨
- NPM
npm install --global git-open
- その他
一回きりの作業なのでgit-open作者が推奨しているように手動でコマンドファイルを作るのが一番良い氣がします。コマンドの置き場所は人それぞれ好みによります。パスが通っていることさえ確認したらどこでも構わないと思います。
Ubuntu の.profile
にパスを通すのに便利ないいサンプルコードがあります。
.profile
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
git-open は要らないかも
さいごに
本記事は 闘魂Elixir #59 の成果です。ありがとうございます。