美文网首页
Web Start Software

Web Start Software

作者: 三哥那多曼 | 来源:发表于2018-01-01 19:14 被阅读0次

以下是一个Web开发者需要安装的软件(windows下)

  • PHP
  • mysql
  • Atom
  • Git
  • WinMerge
  • HeidiSQL
  • Composer

巧的是,以上都是免费软件,且是开源软件

Git 初始化

git config --global user.name "Your Name"
git config --global user.email you@example.com

git config --global alias.ci commit
git config --global alias.st status
git config --global alias.co checkout

Git 和 WinMerge 合作

Using WinMerge as the git Diff/Merge Tool on Windows 64bit

[mergetool]
    prompt = false
    keepBackup = false
    keepTemporaries = false

[merge]
    tool = winmerge

[mergetool "winmerge"]
    name = WinMerge
    trustExitCode = true
    cmd = "/c/Program\\ Files\\ \\(x86\\)/WinMerge/WinMergeU.exe" -u -e -dl \"Local\" -dr \"Remote\" $LOCAL $REMOTE $MERGED

[diff]
    tool = winmerge

[difftool "winmerge"]
    name = WinMerge
    trustExitCode = true
    cmd = "/c/Program\\ Files\\ \\(x86\\)/WinMerge/WinMergeU.exe" -u -e $LOCAL $REMOTE

然后:

git difftool

相关文章

网友评论

      本文标题:Web Start Software

      本文链接:https://www.haomeiwen.com/subject/pfatnxtx.html