Puis-je changer le répertoire par défaut sur mon disque local pour toutes les activités Git?

J'ai donc commencé à utiliser Git et GitHub. C'est encore une montée raide, mais je commence à l'apprécier. Une chose que j'ai remarqué quand j'ai cloner un dépôt, c'est qu'il télécharge toujours à mon dossier d'accueil /users/username. Est-il un moyen de changer cela?

Je suis parti à la recherche par le biais de l'Git manuel et pensé que je pourrais être en mesure d'utiliser --git-dir=GIT_DIRmais je sais que je suis de l'utilisation erronée parce que quand j'ai essayer ce que retourne dans le Terminal est

       git --git-dir=New/Directory/Path/
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
           [-p|--paginate|--no-pager] [--no-replace-objects]
           [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
           [--help] COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

See 'git help COMMAND' for more information on a specific command.

De sorte qu'il doit être mal...

source d'informationauteur jonobr1