1. ホーム
  2. ギット

undefined! 却下】マスター→マスター(フェッチファースト)の解決策

2022-02-08 17:29:31
<パス

! reject]の解決策 -> master (先に取得)
gitを使ってローカルリポジトリのファイルをgiteeにアップロードする際に問題が発生しました。
コメントを見て、私は最初、私のマスターが異なるローカルリポジトリファイルをアップロードしていたため、ブランチの競合だと思いました。そこで、新しいブランチを作成し、ローカルファイルを新しいブランチにアップロードすれば、正しい解決策を得られると思いました。手順は以下の通りです。

 1. cd local repository #Go to the git folder
 2. git init #Initialize a Git repository
 3. git add "readme.txt" #Add the file with git add -A or git add . to commit all changes to the local repository
 4. git status -s #Check the current file commit status of the repository
 5. git commit -m "1.0.0" #Commit from Git's staging area to the repository, with the -m argument followed by the current commit's notes
 6. git branch tempbranch 
 7. git push >git push https://gitee.com/xxxx/xxxx tempbranch 


投稿を見ると、もう一つの可能性として、ブランチが保護モードに設定されており、それを変更することで正常にアップロードできることがわかりました。