最近の記事

[Git]branch操作系[備忘録]

・GitFlowにのっとって作業をする程 branchを切る※developに移動してから行う git branch--- 実行 ---* develop // こうなっていることを確認 git checkout -b hoge--- 実行 ---Switched to a new branch 'hoge' 別のbranchに移動する※修正を加えている程 ①git stashもしくは②git commit -m "foo"しておく ①ならstash list②な

    • [Carthage]Command PhaseScriptExecution failed with a nonzero exit code[エラー]

      表題通り、下記エラーが発生した時の対処法 Command PhaseScriptExecution failed with a nonzero exit code 方法① carthage bootstrap --platform iOS これでも同じエラーが出る場合は下記の方法② 方法② carthageディレクトリを削除 carthage bootstrap --platform ios

      • [git]ブランチ生成と注意点

        前提 developからブランチを切りたい。 方法① ブランチの作成をする前に自身がdevelopブランチにある状態 $ git branch ブランチ名 方法② 他人のブランチにある状態 $ git checkout -b ブランチ名 origin/develop $ git branchは気をつける $ git log develop * branch1$ git branch branch2

      [Git]branch操作系[備忘録]