简体   繁体   中英

Build error “file not found” after git pull --rebase origin master

Remote repo has made some changes to project settings (added new folder and changed include path). How do I pull these settings into my repo please? I tried

git pull --rebase origin master

And then build the c++ codebase but the build throws "File not found". Appreciate any help this beginner can get.

It is indeed git pull origin master but:

  • check first git is recognized in your current shell and $PATH

     git version
  • check you are in your local repository

     cd /path/to/local/repo git remote -v git pull --rebase origin master

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM