コマンドラインを使用して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)
あらゆる助けが高く評価されています!
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
_
これは、Xcode Selectと呼ばれるツールの使用不可のために起こっています。ターミナルの__(somebode)__を実行している_xcode-select --install
_がこれらの問題を修正していません。