Last active
August 29, 2015 14:17
-
-
Save ma3tk/238d78d4a74d9e317e76 to your computer and use it in GitHub Desktop.
github つかってみてね
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
1.ローカルに持ってくる | |
git clone https://github.com/ma3tk/github-new-mon | |
ディレクトリを移動します | |
cd github-new-mon | |
2.編集してコミットとプッシュ | |
ファイルをメモ帳とかで適当に作ってください cityname.txt で作ってください。中身はお任せ | |
# 作成したファイルを追加候補にします | |
git add . | |
# 追加/編集した内容が何かメッセージを残します | |
git commit -m 'ここに適当なメッセージ書いてください なに変更したとか なに追加したとか' | |
# データを直接 master に追加します | |
git push origin master | |
3.ブランチ作ってプルリク出します | |
# マスターで作業をするコマンドを打ちます | |
git checkout master | |
# マスターのデータを最新にします | |
git pull origin master | |
# ブランチを切ります feature/*** 適当に名前変えてください | |
git branch feature/kanagawa | |
# 変えた名前のところに作業場所を変更します | |
git checkout feature/kanagawa | |
# 作成したファイルを追加候補にします | |
git add . | |
# 追加/編集した内容が何かメッセージを残します | |
git commit -m 'ここに適当なメッセージ書いてください なに変更したとか なに追加したとか' | |
# ギットハブにデータを送ります | |
git push origin feature/kanagawa | |
github上で出す | |
https://github.com/ma3tk/github-new-mon/compare | |
base を master, compare を feeature/kanagawa にしてください | |
で、ボタンポチッ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment