16 search resultsShowing 1~16 results

Stocked
sf213471118

@sf213471118

PostgreSQLのテーブル操作

PostgreSQLのテーブル操作についてささっと。 今回はhogeDBにcustomerテーブルを作成し、顧客情報を挿入していく。 顧客情報は下記の3人分。 ID name age 0001 ...

1
2
Comment0
sf213471118

@sf213471118

PostgreSQLのデータベース操作

postgreSQLを起動させて基本的なデータベース操作をささっと。 ※行頭がpsql外では$、**psql内では#**でコマンドを記述してある データベースの新規作成/削除 DB作成 psql...

2
0
Comment0
sf213471118

@sf213471118

Gitのブランチ操作

ブランチ周りの操作についてささっと。 リポジトリを新規追加しただけではブランチがmasterしかないので、開発にあたってブランチを追加する必要がある(ほうがいい) ブランチ周りのコマンドについて...

9
10
Comment0
sf213471118

@sf213471118

Gitのマージ操作

開発では最終的にmasterブランチにマージする。 現在のブランチは以下の通り terminal /Users/sf213471118/git/test $ git branch * maste...

5
1
Comment0
sf213471118

@sf213471118

.gitignoreについて

.gitignoreはGitの管理対象から外すためのルールを記述するファイルのこと 注意点としては既にGitに管理(add/commit)されてしまったものについてはignoreされない。対処法...

44
40
Comment0
sf213471118

@sf213471118

headコマンド

headはファイルの中身を指定行だけ参照できる。(catの軽い版?) $ head [option] [filename] これだけ。デフォルトで10行表示。 # 普通に表示 $ head ho...

1
0
Comment0
sf213471118

@sf213471118

xargsコマンド

xargsはあるコマンドを引数として追加のコマンドを実行できる。 [command1] で実行して得た引数を元に [command2] を実行する $ [command1] | xargs [c...

7
3
Comment0
sf213471118

@sf213471118

grepコマンド

grep grep は特定の文字列を含むファイルの検索ができる。 xargsとの併用に関しては別スレッド。 $ grep [検索正規表現] [option] [directory] [検索正規...

1
4
Comment0
sf213471118

@sf213471118

findコマンド

findは様々な方法でファイル検索ができる。 xargsとの併用に関しては別スレッド $ find [directory] [検索方法] [検索正規表現] ディレクトリは適当なものを。(現階層な...

1
1
Comment1

16 search resultsShowing 1~16 results

Qiita is a knowledge sharing service for engineers.

  1. You can follow users and tags
  2. You can stock useful information
  3. You can make edit suggestions for articles
Functions that can be used after logging in