首页 \ 问答 \ 多个开发人员如何处理单个Moodle项目?(How multiple developers can work on a single Moodle project?)

多个开发人员如何处理单个Moodle项目?(How multiple developers can work on a single Moodle project?)

我是软件开发的新手,正致力于创建Moodle LMS项目。 我已经安装了XAMPP并在Moodle上工作。 但我有另外5名团队成员在同一个Moodle项目上工作。

由于XAMPP安装在每个人的计算机上,我们分开工作。 但是我想知道我们6位开发人员如何在团队中开发项目。 如何进行网络配置? 我是否需要与所有其他团队成员共享XAMPP文件夹才能以团队形式工作?


I am new to software development, working on creating a Moodle LMS project. I have already installed XAMPP and working on Moodle. But I have another 5 team members working on the same Moodle project.

As XAMPP is installed on everyone's computer, we are working separately. But I want to know how all we 6 developers can work in a team to develop a project. How can I go for making the network configurations? Do I need to share the XAMPP folder to all other team members in to work as a team?


原文:https://stackoverflow.com/questions/32368772
更新时间:2021-09-03 16:09

最满意答案

您正在寻找的是以太网Powershell工作流程,请阅读更多关于我在PowerShell出售中输入以下内容的信息:

get-help about_Workflows

或者您可以使用powershell中的这个cmdlet调用:

get-help Start-Job -full

一个前。 “开始 - 工作”:

start-job -name process -scriptblock {get-process}

Powershell将在作业中启动Get-process,您可以在此会话中继续工作或GUI。 作业完成后,您可以使用

get-job -name process | Receive-Job

要了解有关此cmdlet及其相关cmdlet的更多信息,请访问powershell并对以下RelatedLinks进行获取帮助:Get-Job Remove-Job Resume-Job Start-Job Stop-Job Suspend-Job Wait-Job about_Jobs about_Job_Details


What you are looking for is ether Powershell Workflow, read more about that my typing the following in a powershell sell:

get-help about_Workflows

Or you can use this cmdlet from powershell called:

get-help Start-Job -full

An ex. of "Start-Job":

start-job -name process -scriptblock {get-process}

Powershell will start Get-process in a job, and you can continue working, or the GUI, on this session. When the job is done, you can use

get-job -name process | Receive-Job

To learn more about this cmdlet and it's related cmdlets please go to a powershell and do a get-help on the following RelatedLinks: Get-Job Remove-Job Resume-Job Start-Job Stop-Job Suspend-Job Wait-Job about_Jobs about_Job_Details

相关问答

更多
  • 所以基本上你想使用PowerShell向后? 函数应该只返回实际输出流中所需的值,如果要提供有关命令是什么的信息,那么任何不应将值返回给流的函数应该被捕获到变量中或发送到Out-Null这样做是write-verbose目的。 Write-Verbose按预期工作,就像写主机一样,它不会被放入流中。 要回答你的问题,你应该做的是重写你的函数,以便它们返回一个值(或者根本没有值),对于无法重写的函数,你可以通过将它们分配给脚本来禁止它们的输出一个变量(如果它们必须稍后使用)或者只是将它们传送到Out-Null ...
  • 您正在寻找的是以太网Powershell工作流程,请阅读更多关于我在PowerShell出售中输入以下内容的信息: get-help about_Workflows 或者您可以使用powershell中的这个cmdlet调用: get-help Start-Job -full 一个前。 “开始 - 工作”: start-job -name process -scriptblock {get-process} Powershell将在作业中启动Get-process,您可以在此会话中继续工作或GUI。 ...
  • 我有办法从powershell提交猪脚本。 我正在关注这个链接 。 但问题在于它关于Hive脚本。 所以它的创建步骤就是这样 $runhivescriptargs = @("s3://us-east-1.elasticmapreduce/libs/hive/hive-script", ` "--base-path", "s3://us-east-1.elasticmapreduce/libs/hive", ` "--hive-versions","latest", ` ...
  • 在powershell中,一组多个任意类型的对象在集合中返回是很常见的。 考虑这个改变的例子,我建立自己的表: PS C:\> $job = Start-Job -ScriptBlock { >> >> $table = New-Object system.Data.DataTable “MyTable” >> >> $col1 = New-Object system.Data.DataColumn MyFirstCol,([string]) >> $col2 = New-Object system.Dat ...
  • 你必须传入服务器参数。 作业在单独的进程中运行,如果不将其作为参数传递,则无法访问您的$srv字符串。 在PS3.0中,您可以使用“使用”范围(例如$using:srv ),但在PS2.0中,您需要在脚本块和-Argumentlist使用param(..)来发送对象。 尝试这个: $server=@("SERVER1","SERVER2") foreach($srv in $server) { Start-Job -scriptblock { param($serv) ...
  • 迟到总比我想的要好。 在Powershell作业中运行ffmpeg时,我遇到了同样的大量内存消耗问题。 问题的核心是Powershell作业将任何/所有输出存储到内存中,并且ffmpeg非常乐意将输出记录到标准输出和标准错误流。 我的解决方案是将参数“-loglevel quiet”添加到ffmpeg。 或者,您可以将标准流和错误流重定向到null(仅仅重定向标准流是不够的)。 有关如何重定向标准流的更多信息,请参阅此问题: 标准和错误输出的重定向附加到同一日志文件 Better late than nev ...
  • 小心, $input是PowerShell使用的自动变量,允许迭代传递给函数的数据。 试试这个: function clean_data($data) { Write-Verbose "Received data: $data" Write-Verbose "Cleaning data" $output = @() foreach ($line in $data) { Write-Verbose "Processing line: $line" if ($line -ma ...
  • 我说你的PowerShell的XP配置是“有点”修改的。 :-)它应该在CLR 2.0版上运行,例如: Name Value ---- ----- CLRVersion 2.0.50727.3615 BuildVersion 6.0.6002.18111 PSVersion 2.0 WSM ...
  • 我认为任务设置的执行限制是你正在寻找的: $task.Settings.ExecutionTimeLimit = 'PT30M' 一个同样的命令行开发版: $settings = New-ScheduledTaskSettingsSet -ExecutionTimeLimit (New-TimeSpan -Minutes 30) Set-ScheduledTask -TaskName 'taskname' -Settings $settings 供参考: https : //technet.mi ...
  • 所以这个问题与安全有关。 我有这个盒子的管理员权限。 我已经使用我的帐户创建了代理帐户,并使用代理来运行PowerShell脚本。 它没有问题。 不确定代理帐户缺少哪些权限。 服务器管理员正在调查发生了什么变化。 一旦我们发现我也会在这里更新答案。 更新: 重启它是!! 呼! 代理帐户没有任何问题。 代理帐户的东西破了! 很高兴问题得到解决。 修补程序后服务器重新启动,没有挂起的重启。 另外,修补后的工作成功运行了2天。 所以只是一个奇怪的失败! 我无法找到破坏帐户的内容。 So the issue is ...

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。