2016-08-10から1日間の記事一覧

Eclipseの実行ログを見る方法

cd ~/Development/salt-inc/zero-one/zo-api/zo-tools/ で移動。 zo-tools.ymlファイルにある、appenders:archivedLogFilenamePattern:に書いてあるディレクトリをコピー。 tail -n 行数 /var/apps/logs/zo-tools.log(さっきコピったやつ) を打てば実行ロ…

Eclipseで実行できない問題

問題 EclipseでApplicationを実行しようとすると、 usage: java -jar project.jar [-h] [-v] {server,check} ... positional arguments: {server,check} available commands optional arguments: -h, --help show this help message and exit -v, --version …

Linux tail・cat

cat ファイルを指定することで、そのファイルの中身を表示させる。 cat ファイル名 tail テキストファイルの末尾のn行を抜き出す。 tail -n 行数 ファイル名

Git origin・upstreamとはとは

origin レポジトリの場所の名前(別名) master デフォルトのブランチの名前 upstream ブランチの派生元 イマイチわかってないのでまた後で調べよー

Git remote

Git

remote 他のリポジトリとの接続の作成・削除・内容確認ができるコマンド。 git remote -v 他のリポジトリへの接続の一覧をURL付きで表示。