記事一覧

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

・GitFlowにのっとって作業をする程 branchを切る※developに移動してから行う git branch--- 実行 ---* develop // こうなっていることを確認 git checkout -b hoge---…

くま
3年前

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

表題通り、下記エラーが発生した時の対処法 Command PhaseScriptExecution failed with a nonzero exit code 方法① carthage bootstrap --platform iOS これでも同じ…

くま
3年前

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

前提 developからブランチを切りたい。 方法① ブランチの作成をする前に自身がdevelopブランチにある状態 $ git branch ブランチ名 方法② 他人のブランチにある状…

くま
3年前

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

・GitFlowにのっとって作業をする程

branchを切る※developに移動してから行う

git branch--- 実行 ---* develop // こうなっていることを確認

git checkout -b hoge--- 実行 ---Switched to a new branch 'hoge'

別のbranchに移動する※修正を加えている程

①git stashもしくは②

もっとみる

[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

もっとみる

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

前提

developからブランチを切りたい。

方法①

ブランチの作成をする前に自身がdevelopブランチにある状態

$ git branch ブランチ名

方法②

他人のブランチにある状態

$ git checkout -b ブランチ名 origin/develop

$ git branchは気をつける

$ git log develop * branch1$ git bra

もっとみる