Difference between revisions of "Git -C"

From wikieduonline
Jump to navigation Jump to search
Line 18: Line 18:
 
* {{git pull}}
 
* {{git pull}}
 
* {{git fetch}}
 
* {{git fetch}}
 +
* {{git -C}}
  
 
[[Category:Git]]
 
[[Category:Git]]

Revision as of 12:46, 22 October 2024

git -C <path> run as if git was started in <path> instead of the current working directory.
  • Pull subdirectories:
ls | parallel git -C {} pull (assuming all sub-dirs are git repositories) [1]
ls | parallel git -C {} fetch
-C <PATH> run as if git was started in <path> instead of the current working directory


git fetch -C /path/to/git/folder

Related

See also

  • https://stackoverflow.com/a/33557279
  • Advertising: