设置git local env

时间:2018-04-17 14:31:25

标签: git github version-control

我是github上拥有存储库的团队的一员。虽然我正在修改一些文件,但我能看到结果(pdf工件)的唯一方法就是将我的提交推送到github并从那里下载。
我知道通过设置本地环境可以更容易。这样我可以在本地创建我的工件 我已经搜索了解释如何操作的指南,但似乎即使在我的git设置之后我也不知道如何在本地生成文件。

core.excludesfile=~/.gitignore
core.legacyheaders=false
core.quotepath=false
mergetool.keepbackup=true
push.default=simple
color.ui=auto
color.interactive=auto
repack.usedeltabaseoffset=true
alias.s=status
alias.a=!git add . && git status
alias.au=!git add -u . && git status
alias.aa=!git add . && git add -u . && git status
alias.c=commit
alias.cm=commit -m
alias.ca=commit --amend
alias.ac=!git add . && git commit
alias.acm=!git add . && git commit -m
alias.l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
alias.ll=log --stat --abbrev-commit
alias.lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
alias.llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit
alias.d=diff
alias.master=checkout master
alias.spull=svn rebase
alias.spush=svn dcommit
alias.alias=!git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\     => \2/' | sort
include.path=~/.gitcinclude
include.path=.githubconfig
include.path=.gitcredential
diff.exif.textconv=exif
credential.helper=osxkeychain
core.autocrlf=input
core.editor=sublime
color.ui=true
color.status=auto
color.branch=auto

1 个答案:

答案 0 :(得分:2)

  

我有一个Late文件,导致pdf工件

我想你的意思是Latex,在这种情况下你应该在你的本地机器上获得一些pdf生成器工具(你有你的本地Git仓库,并且正在修改你的Latex文件)

例如michaelgruber/vim-latex-pdfdscape/pdflatex-as-a-service 这样,您就不必等待将该文件推送到GitHub。