
% git config --list --local
fatal: --local can only be used inside a git repository
If you are trying to use --local option along with a git command like config, you will get a fatal error saying local can only be used inside a git repository when you are not inside any git managed repo.
The option --local is associated with a repo that is local and hence you should be inside one of them.
Fix:Navigate to the directory where you have your code in git and run the command again!
% git config --list --local
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=https://xxxx:xxxx@github.com/xxxx/repo.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.main.remote=origin
branch.main.merge=refs/heads/main
More Posts related to Git,
- Change the default git branch name from master to main
- [Fixed] Git Clone git@github.com: Permission denied (publickey) Could not read from remote repository Fatal error
- [Solution] fatal: not a git repository (or any of the parent directories): .git
- [fix] zsh: command not found: git
- How to Install Git on Windows
- Setup Git + Visual Studio Code Tutorial
- How to undo last Git Commit on Local Repository?
- Install GitHub Command Line Tool on Mac
- How to Create a Git Branch in 6 Different ways
- Fix Git: Warning: could not find UI helper GitHub.UI on Windows
- Git Config Command - A Deep Dive
- Step-by-Step: How to delete a git branch from local as well as remote origin
- How to Add Git Bash Option to Windows Terminal List
- Command to Clone Repository Using Git Bash
- How to remove or unstage a file from git staged area
- Get the file location of git config values
- GitHub: How to Search Code
- How to check your installed version of Git
- Fix: error: src refspec master does not match any failed to push some refs to Git
- Git: Step-by-Step - How to Push Local Brach to GitHub
- How to Merge Branch into Master Branch
- fix fatal: --local can only be used inside a git repository error
- Fix: Git Pull Error: unable to resolve reference refs/remotes/origin/master: reference broken
- Change the default diff or commit editor for git
- Git Fix: fatal: refusing to merge unrelated histories Error
More Posts:
- Java + Spring JDBC Template + Gradle Example - Java
- How to share SharePoint site or document with all users in organization - SharePoint
- osascript wants to make changes while Android Studio Installation on Mac OS X - Mac-OS-X
- [fix] AWS S3 make_bucket failed: An error occurred (InvalidBucketName) when calling the CreateBucket operation. - S3
- How to remove JetBrains Toolbox from Mac Startup - HowTos
- How to install brew on macOS Ventura - MacOS
- ERROR x86 emulation currently requires hardware acceleration. Intel HAXM is not installed on this machine - Android
- Create an AWS User using CLI2 Command at a specific Path - AWS