git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.gitmodules
Commit message (Expand)AuthorAgeFilesLines
* preparation for submodule-less checkoutH. P. 2024-07-141-0/+3
* move submodule git-prompt to post-checkoutH. P. 2024-07-141-6/+0
* specify branch of submoduleH. P. 2024-07-141-0/+1
* reintroducing main submodule shllow/sparse configH. P. 2024-07-141-0/+2
* working commit for submoduleH. P. 2024-07-141-0/+3
* revampH. P. 2024-07-141-5/+0
* fix: submodule info of git-prompt was garbageH. P. 2024-07-141-1/+3
* inclusion of git promptH. P. 2024-07-141-0/+3
* $meaningful_git_commit_message[213]H. P. 2022-03-231-0/+2
* Initial commitH. P. 2022-03-191-0/+6
.nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */ .highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #aa0000 } /* Name.Variable */ .highlight .ow { color: #0000aa } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #009999 } /* Literal.Number.Bin */ .highlight .mf { color: #009999 } /* Literal.Number.Float */ .highlight .mh { color: #009999 } /* Literal.Number.Hex */ .highlight .mi { color: #009999 } /* Literal.Number.Integer */ .highlight .mo { color: #009999 } /* Literal.Number.Oct */ .highlight .sa { color: #aa5500 } /* Literal.String.Affix */ .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */ .highlight .sc { color: #aa5500 } /* Literal.String.Char */ .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */ .highlight .sd { color: #aa5500 } /* Literal.String.Doc */ .highlight .s2 { color: #aa5500 } /* Literal.String.Double */ .highlight .se { color: #aa5500 } /* Literal.String.Escape */ .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */ .highlight .si { color: #aa5500 } /* Literal.String.Interpol */ .highlight .sx { color: #aa5500 } /* Literal.String.Other */ .highlight .sr { color: #009999 } /* Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
#!/usr/bin/env sh
#install -dvm 0750 .git/modules
#install -dvm 0750 .git/modules/git-prompt
#install -dvm 0750 .git/modules/git-prompt/info
#cat > .git/modules/git-prompt/info/sparse-checkout <<EOF
#contrib/completion/git-prompt.sh
#EOF
rm -rf ./git-prompt
#printf "git-clone of submodule:\\n"
#git -c submodule.sha1collisiondetection.update=none clone --depth=1 --no-checkout https://github.com/git/git.git git-prompt &&\
#printf "git-submodule add:\\n" &&\
#git submodule add -f https://github.com/git/git.git git-prompt &&\
#printf "git-config sparseCheckout:\\n" &&\
#git -C git-prompt config core.sparseCheckout true &&\
#printf "git-submodule update:\\n" &&\
#git submodule update --force --checkout git-prompt
git -c submodule.sha1collisiondetection.update=none clone --no-checkout --depth 1 https://github.com/git/git.git ./git-prompt &&\
(
	cd ./git-prompt || exit 1

)