#毎日たたく#
現在のブランチを確認する
git branch
developをチェックアウトする
git checkout develop
更新ファイル確認
git status
差分確認
git diff
git管理に追加
git add
リモートのdevelopをpullする
git pull origin develop
リモートのdevelopへpushする
git push origin develop
リモートのdevelopへ-f pushする
git push -f origin develop
gitのログを見る
git log
gitのコミットログを見る
git reflog
コミットする
git commit -a
developでリベースする
git rebase develop
git rebase --continue
git rebase --abort
ソースはそのままでひとつ前のコミットを取り消す
git reset --soft HEAD^
#たまにたたく
ソースの変更を取り消してひとつ前のコミットを取り消す
git reset --hard HEAD^
*特定のコミットのみを適用する
`git cherry-pick XXXXXXXX
ファイルを管理対象から外す
.gitignoreに追記
git rm --cached [ファイル名]
git rm -r --cached [フォルダ名]
#最初だけ
初期設定
git ini
git remote add origin https://XXXXX@github.com/XXXXX/XXXXX.git
色を付ける
git config --global color.ui true
#その他
1年経つまでは随時更新していきます。