Github cheatsheet
ようやくまとめるとこまで漕ぎつけた…
1.ローカルリポジトリを作る
自分の置きたい場所にファイルを配置する。
(E.g.) cd ~/Desktop
mkdir hogefuga
cd hogefuga
ここで必ずgit initする。
恐らくこれ忘れてsrc refspec master does not match anyみたいなエラー吐かれてしまった。
2.addしてcommit
1の工程を終えたら、次はお目当てのものを何か作った後にaddしていい感じにする。その後、コミットメッセージを添えていい感じに
touch hoge.txt
git remote add origin https://
git commit -m "time files like an arrow"
git push -u origin master
2.1 git cloneしてから新しく追加とかしたいとき
git clone http://hogehoge
mkdir hogefuga
cd hogafuga
git init
git add hogefuga
git commit -m "menndoina"
git push
https://qiita.com/nt_tn/items/c5ea999a2638e03ee418
↑これ見た
2.2 ファイルの下のファイルを編集…みたいなシチュ
編集したファイルの一つ上のファイルを
git add
git commit
git pushすればいい?
3.branch切る(よくわかってない)
git checkout -b <branch name>
4.github上に新しいリポジトリを
画面左にある緑ボタンを押して、あとはフォームの指示に従っていい感じに。その後、remoteしてローカルとすり合わせて?(要理解)、push
git remote add origin https://github.com/spokey/mynewrepository.git
git push -u origin master
git push origin mybranch
困ったときはgit statusでこまめに確認。これで必要最低限なんとか耐える。
https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners
上記リンクを参考にしたので、こまったらこれ見るかググるか各自対処すること。