19
17

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 5 years have passed since last update.

hubでGithubをちょっと便利に。

Last updated at Posted at 2014-11-27

#事前準備

#hubのインストールと設定

##hubとは - https://github.com/github/hub

hub - git + hub = github
hub is a command-line wrapper for git that makes you better at GitHub.

つまり、Githubを便利にするツールです。入れるしかないです。

##インストール

brew install hub

##設定

.bash_profileや.zshrcに以下の一文を追加し、シェルを再起動してください。

bash,zsh
eval "$(hub alias -s)"
fish
eval (hub alias -s)

##確認

which git
-> git: aliased to hub

となれば、もうhubを使えるようになっています。

#hubの使い方

詳しい使い方はここか、
https://github.com/github/hub#commands

git help hub (or man hub)

で確認してください。

長いURLを入力しなくてもcloneできるようになったり、いろいろ省略できるようになります

#よく使うもの

##git create

以下のコマンドで、Githubにレポジトリを作成することができます

git create [NAME] [-p] [-d DESCRIPTION] [-h HOMEPAGE]
オプション 意味
NAME レポジトリの名前
-p プライベートレポジトリにする
-d DESCRIPTION レポジトリの詳細を追加
-h HOMEPAGE ホームページを追加

##git browse

以下のコマンドでリモートのGithubレポジトリをブラウザで開くことができます

git browse [-u] [[USER/]REPOSITORY] [SUBPAGE]
19
17
1

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
19
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?