IT分からんわ~_~;

IT色々お勉強中のブログ

2015-11-12から1日間の記事一覧

gitにコミット、push

git

branch作成 git branch aabranch branchの移動 git checkout aabranch commit git status #違いが在れば git add . git commit -m 'add file' push git push origin aabranch merge masterにマージしてpush % git co master % git merge aabranch % git push…

githubで管理する

git

ディレクトリを作成 mkdir hogehoge cd hogehoge githubに作成+初期化 git init ファイル作成、コミット echo "# hoge" >> README.md git add . git ci -m 'First commit.' githubにpushする git remote add origin https://github.com/POGEPOGE/hogehoge.g…