Skip to content

Instantly share code, notes, and snippets.

@peroon
Created November 28, 2015 07:23
Show Gist options
  • Save peroon/9db970a6d5dfb85b4fba to your computer and use it in GitHub Desktop.
Save peroon/9db970a6d5dfb85b4fba to your computer and use it in GitHub Desktop.
久しぶりにGit
git --version
古かったので2.6へ
設定
486 git config --global user.name "peroon"
487 git config --global user.email "[email protected]"
クローン
488 git clone https://github.com/peroon/peroon.github.com.git
変更を加える
499 git add *
500 git commit -m "add fugubowl"
gh-pages, ブランチ作らなくて良いみたい, masterにコミット
507 git push origin master
READMEをブラウザから作ったのでとってくる
515 git pull
517 vi README.md
変更を加えて、コミット、プッシュ
528 git add .
529 git commit -m "Change link url."
530 git push origin master
思い出してきた
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment