web-dev-qa-db-ja.com

'git init -b <branch name>'端末のコマンドが「不明なスイッチ」エラーを投げています

コマンドラインを使用してgithubに既存のプロジェクトを追加しようとしています。私はターミナルの関連作業ディレクトリにあり、git init -b mainコマンドを使用しようとしています。

最初は、Xcodeに関するエラーが発生しました。

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

xcode-select --installを試しましたが、ソフトウェアはアップデートサーバーから使用できませんでしたので、 https://developer.apple.com/download/more /

git init -b mainを入力するには、次の手順を実行しています。

error: unknown switch `b'
usage: git init [-q | --quiet] [--bare] [--template=<template-directory>] [--shared[=<permissions>]] [<directory>]

--template <template-directory>
                      directory from which templates will be used
--bare                create a bare repository
--shared[=<permissions>]
                      specify that the git repository is to be shared amongst several users
-q, --quiet           be quiet
--separate-git-dir <gitdir>
                      separate git dir from working tree

私はGitバージョンを実行しています:2.24.3(Apple Git-128)

あらゆる助けが高く評価されています!

5
pjgearing

NS -bフラグはバージョン2.28以降でのみ利用可能で、あなたはあなたのgitをアップグレードする必要があります。

UbuntuなどのDebianベースのLinuxシステムでは、次の手順を実行します。

Sudo add-apt-repository -y ppa:git-core/ppa
Sudo apt update
Sudo apt install git -y
 _
0
Thiago Krempser

これは、Xcode Selectと呼ばれるツールの使用不可のために起こっています。ターミナルの__(somebode)__を実行している_xcode-select --install_がこれらの問題を修正していません。

0
Shodipo Ayomide