Created
December 13, 2015 06:22
-
-
Save Yosuke-Kawakami/2beb5f218da80cfe750a to your computer and use it in GitHub Desktop.
ようやく Git の使い方を理解してきたので個人的にメモ。チュートリアルサイトを見に行かない姿勢
This file contains hidden or 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
# 初回 | |
git config --global user.name "YOUR_NAME" | |
git config --global user.email "YOUR_EMAIL" | |
git init | |
git add hoge | |
git commit -m "hoge hoge" | |
git remote add origin <SOMEWHERE_YOUR_PATH> | |
git push origin master | |
# 二回目以降 | |
git add hoge | |
git commit -m "hoge hoge" | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment