gpt4 book ai didi

git - 适用于Windows Git Shell(PowerShell)的Github-如何在Git Shell和常规PowerShell之间 “sync settings”

转载 作者:行者123 更新时间:2023-12-03 00:17:40 24 4
gpt4 key购买 nike

我无法正常使用PowerShell,使其完全能够像GitHub for Windows一样正常工作。我在PS配置文件中使用了this(如下所示)来运行posh-git,实际上我可以使用Git,但是在使用两者时,我注意到有些事情是不同的。

# Load github shell and posh-git example profile
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1")
. (Resolve-Path "$env:github_posh_git\profile.example.ps1")

特别是,两者之间的配置不同。如果输入 git config --list,我可以看到GfW的Git Shell中还有更多方法。我通过尝试使用 git difftool遇到了这个问题,但它不起作用(在Git Shell中它将使用VS2013)。以下是两者列表中的一些内容。

Git Shell(适用于Windows的GitHub):
> git config --list
alias.c=commit
alias.co=checkout
alias.dt=difftool
alias.mt=mergetool
alias.praise=blame
alias.ff=merge --ff-only
alias.st=status
alias.sync=!git pull && git push
apply.whitespace=nowarn
core.symlinks=false
core.autocrlf=true
core.editor=gitpad
core.preloadindex=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
color.ui=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle-ghfw.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
credential.helper=!github --credentials
filter.ghcleansmudge.clean=cat
filter.ghcleansmudge.smudge=cat
push.default=upstream
diff.tool=vs2013
diff.algorithm=histogram
difftool.prompt=false
difftool.bc4.cmd="c:/program files (x86)/beyond compare 3/bcomp.exe" "$LOCAL" "$REMOTE"
difftool.p4.cmd="c:/program files/Perforce/p4merge.exe" "$LOCAL" "$REMOTE"
difftool.vs2012.cmd="c:/program files (x86)/microsoft visual studio 11.0/common7/ide/devenv.exe" '//diff' "$LOCAL"
"$REMOTE"
difftool.vs2013.cmd="c:/program files (x86)/microsoft visual studio 12.0/common7/ide/devenv.exe" '//diff' "$LOCAL"
"$REMOTE"
merge.tool=bc3
mergetool.prompt=false
mergetool.keepbackup=false
.......

常规PowerShell:
> git config --list
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
user.name=Jordan Harris
user.email=****************
filter.lfs.clean=git lfs clean %f
filter.lfs.smudge=git lfs smudge %f
filter.lfs.required=true
gui.recentrepo=C:/Users/Jordan/SkyDrive/Documents/JUCE/Projects/CustomKnob2
core.editor=atom --wait
core.autocrlf=false

我真的很想在Console2(或ConsoleZ)中使用PowerShell,因此在两个PowerShell之间具有相同的配置真的很棒。我使用普通Powershell的原因是因为我无法让Git Shell在Console2中工作。如果有人知道如何使它与Console2一起使用,我会只使用它就可以了。我真的很感谢你们的任何帮助。

注意:当我说“Git Shell”时,是指GitHub for Windows附带的Git Shell快捷方式。就像从GfW应用程序中打开它一样。

最佳答案

将您的设置放入位于您的主目录(即C:\ Users \ username)中的名为.gitconfig的文本文件中。

这就是second widest scope of settings,它将被应用到当前用户的所有存储库中,而与使用的客户端应用程序无关。

您可以通过将--global开关传递给git config来修改那些设置。例如:

git config --global core.autocrlf false

关于git - 适用于Windows Git Shell(PowerShell)的Github-如何在Git Shell和常规PowerShell之间 “sync settings”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30299544/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com