Skip to content

Instantly share code, notes, and snippets.

@koba-ninkigumi
Created February 19, 2012 09:20
Show Gist options
  • Save koba-ninkigumi/1862715 to your computer and use it in GitHub Desktop.
Save koba-ninkigumi/1862715 to your computer and use it in GitHub Desktop.
GitHubでフォークして新たなブランチを作成してカスタマイズしてGitHubに格納
1. フォークする
githubで Fork ボタンを押した。
2. 自分のホストにクローンする
git clone git@github.com:koba-ninkigumi/oauthssodemo.git
3. ディレクトリ移動
cd oauthssodemo
4. python27 というブランチを作成した
git branch python27
git branch
# masterに*がついていることを確認
5. ブランチを変更
git checkout python27
git branch
# python27に*がついていることを確認
6. githubに送信
git push origin python27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment