0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【初めてのGit】 エラーが出てpush出来ない場合

Last updated at Posted at 2021-02-19

前提条件
gitをインストールしている。
gitに登録している。


###問題
エラーが出てpush出来ない
#エラー内容

R:\Install\xampp\htdocs\Laravel\tasklist> git push -u origin master
error: src refspec master does not match any
error: failed to push some refs to 'origin'

翻訳
error: src refspec master がどのようなものにもマッチしません。
error: いくつかの参照を 'origin' にプッシュするのに失敗しました。

##試したこと
addして

git add .

commit

git commit -m "first commit" -a

pushするとまたエラー

R:\Install\xampp\htdocs\Laravel\tasklist>git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

翻訳
fatal: 'origin' が git リポジトリではないようです。
fatal: リモートリポジトリから読み込めませんでした。
正しいアクセス権を持っていることを確認してください
リポジトリが存在することを示しています。

##対応方法

.gitフォルダを削除してやり直す

プロジェクトフォルダ内の.gitフォルダを削除する
  隠しフォルダを表示しないと見つかりません。

以下、プロジェクトフォルダに移動してコマンド

:gem:.gitフォルダを作る

git init

:gem:プロジェクトをaddする

git add .

:gem:コミットする

git commit -m "first commit" 

:gem:リポジトリを指定する

git remote add origin https://github.com/ユーザ名/リポジトリ名.git

:gem:pushする

git push origin master

#gitを理解するには時間を要す
情報が多いと、必要な情報を取得するのが大変でした…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?