Git aliases that are stored in origin

后端 未结 2 1979
迷失自我
迷失自我 2021-02-09 18:05

I use git with a big development team and I\'d like to have a set of aliases be common across every developer. They change every so often, so I\'d like to store them in origin

相关标签:
2条回答
  • 2021-02-09 18:42

    1) Create .gitalias files with something like this:

    [alias]
      # full status
      s = !git status -sb && git submodule foreach --recursive git status -sb
    

    2) Commit this file.

    3) Add following lines to .git/config:

    [include]
        path = ../.gitalias
    

    4) Ask all members of your team to repeat step 3.

    0 讨论(0)
  • 2021-02-09 18:55

    You can versionning in your gitosis a default ~/.gitconfig with all of you alias and share configuration.

    You can't modify you .git/config by project

    You can too made some script to launch some git command like :

    
    git config alias.st status
    git config alias.ci commit
    

    Each person to launch this script had this twice alias in local git config

    0 讨论(0)
提交回复
热议问题