「init」コマンドを使用して、リポジトリを作成する。
gitのリポジトリをカレントディレクトリに作成する。
1 |
$ git init |
※注意 : リポジトリを作成したいディレクトリに移動してからコマンドを実行する。
通常の運用は、サーバーに中央リポジトリを作成して、クライアント側はサーバーのリポジトリをクローンして使用するほうが望ましい。
「init」コマンドを使用して、リポジトリを作成する。
gitのリポジトリをカレントディレクトリに作成する。
1 |
$ git init |
※注意 : リポジトリを作成したいディレクトリに移動してからコマンドを実行する。
通常の運用は、サーバーに中央リポジトリを作成して、クライアント側はサーバーのリポジトリをクローンして使用するほうが望ましい。
SSHを使用した接続がうまくいかない
調べてみると、SSH接続の設定がレジストリに書き込まれていないと接続できないみたい。
plinkコマンドを使用してレジストリに設定を書き込む。
SSHを登録するコマンド
1 |
$ plink -ssh -C -i "[ssh key]" [host] |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
$ plink Plink: command-line connection utility Release 0.67-jp20160306 Usage: plink [options] [user@]host [command] ("host" can also be a PuTTY saved session name) Options: -V print version information and exit -pgpfp print PGP key fingerprints and exit -v show verbose messages -load sessname Load settings from saved session -ssh -telnet -rlogin -raw -serial force use of a particular protocol -P port connect to specified port -l user connect with specified username -batch disable all interactive prompts -sercfg configuration-string (e.g. 19200,8,n,1,X) Specify the serial configuration (serial only) The following options only apply to SSH connections: -pw passw login with specified password -D [listen-IP:]listen-port Dynamic SOCKS-based port forwarding -L [listen-IP:]listen-port:host:port Forward local port to remote address -R [listen-IP:]listen-port:host:port Forward remote port to local address -X -x enable / disable X11 forwarding -A -a enable / disable agent forwarding -t -T enable / disable pty allocation -1 -2 force use of particular protocol version -4 -6 force use of IPv4 or IPv6 -C enable compression -i key private key file for user authentication -noagent disable use of Pageant -agent enable use of Pageant -hostkey aa:bb:cc:... manually specify a host key (may be repeated) -m file read remote command(s) from file -s remote command is an SSH subsystem (SSH-2 only) -N don't start a shell/command (SSH-2 only) -nc host:port open tunnel in place of session (SSH-2 only) -sshlog file -sshrawlog file log protocol details to a file |
この設定を行ったら接続できるようになった。
参考サイト
http://qiita.com/moo/items/5ee3208254c34719914b