Last active
March 10, 2017 06:45
-
-
Save ochim/cbbc6043bf0c76e04eca01c343024168 to your computer and use it in GitHub Desktop.
curlコマンドとか
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
■curl | |
$ curl -i -X POST -H "Content-Type:application/json; charset=utf-8" \ | |
> -H "Accept-Language:en" \ | |
> -H "Cookie:JSESSIONID=xxxxx" \ | |
> -d \ | |
> '{"sequence_no":"0","all_flg":"0"}' \ | |
> 'https://xxx.yyy.com/rest/v1/list' | |
■Git で不要になったリモートブランチを削除する | |
$ git branch -d ios7 | |
Deleted branch ios7 (was 57c1b0b). | |
■リモートブランチも削除 | |
$ git push origin :ios7 | |
To https://xxx.git | |
- [deleted] ios7 | |
push で消すのとか、:hoge で指定するのとか、最初ちょっと戸惑った。 | |
■ついでにリモートブランチをローカルにチェックアウトする方法も。 | |
■ios8 ブランチがローカルにないのでチェックアウトしたい場合。 | |
$ git checkout -b ios8 origin/ios8 | |
remotes/ は不要。-b オプションを付けると自動的にそのブランチに切り替わる。 | |
■ウェルノウンポート | |
このうち、0から1023までの各ポートはそれぞれ特定のサービスやプロトコルが利用することが広く知られており、 | |
インターネットで公開するサーバはその番号を当該サービス、プロトコルで利用することが推奨されている。 | |
特に有名なのはHTTPの80番やFTPの20・21番、SMTPの25番、POP3の110番、DNSの53番などである。 | |
また、新しいプロトコルやサービスは1024番以降を利用することが慣例となっている。 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment