在spigotmc上的Wiki,使用buildtools需要用到git,想知道git在开发中起到什么作用?仅仅是用来打开buildtools的吗?之后的开发还会用到吗?
 
 
Git - In order for BuildTools to run on Windows, you will need to install Git. For Windows it is distributed via git-scm, which can be downloaded here. Install it where you like, it will provide git bash, which will be used to run the BuildTools jar. Just keep hitting next when running the installer.
在获取spigot.jar中能不能跳过这步,不适用git?
 
Git - In order for BuildTools to run on Windows, you will need to install Git. For Windows it is distributed via git-scm, which can be downloaded here. Install it where you like, it will provide git bash, which will be used to run the BuildTools jar. Just keep hitting next when running the installer.
在获取spigot.jar中能不能跳过这步,不适用git?
来自百度的解释:Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理。[2]Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。
耗子 发表于 2017-8-27 13:57
来自百度的解释:Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理 ...
嗯~~~
干脆直接告诉我是不是必须软件吧
不是必须的但是我可以说很重要吗?总的来说就是个源代码管理软件,用于代码管理,团队开发等。
比方说你修改了源码,跟你合作写代码的人却不会受到更新后的代码,用git版本控制就可以解决这个问题
分布式的vcs而已,多人协作必须的,你也可以用svn什么的(你高兴的话),buildtools只是将多步操作变成批处理而已,比如jar重映射,反编译,patch应用,编译,测试,打包,一条龙服务。