English 中文(简体)
在Ubuntu 12.04 上的 Git 克隆 XAMPP
原标题:Git Clone XAMPP on Ubuntu 12.04

我试图通过Ubuntu 12.04 - < a href="https://github.com/mozilla/butter" rel= "nofollow noreferrer">https://gitub.com/mozilla/butter 安装黄油。

我可以通过 Github 上的指令来抓取所有文件, 这些指令复制到我的/ home/ butter 目录。 我使用 XAMPP 来进行本地开发 。 我怎样才能修改 Git 来下载和配置存储器, 从 /opt/ lampp/ htdocs/ xamppp/ 运行?

I m new to git as you can tell but can t find my answer (yet) via researching. I tried this - git clone localhost? but Ubuntu is saying the directory doesn t exist when I do a: $ cd /opt/lampp/htdocs/xampp/ $ git clone /opt/lampp/htdocs/xampp/

非常感谢你的帮助

最佳回答

git 克隆是一个命令, 它指示将远程仓库的克隆到您引用命令的当前目录中的文件夹 。 (文件夹名称与 repo s 名称相同, 除非您指定不同的名称)

你需要做的是,

转到您的 xampp htdocs 目录( 我认为这是您需要的, 而不是放在 xampp 目录中 )

cd /opt/lampp/htdocs/

然后克隆,

git clone https://github.com/mozilla/butter

在此之后, 您可以将浏览器浏览到 hxxp:// 127. 0.0.1/butter 并做您想要做的事 。 (替换 x 至 t )

问题回答

暂无回答




相关问题
Add a changing icon to Ubuntu Panel

What would be the most simple way of adding and changing an icon in the Ubuntu (Gnome) Panel? I m looking for something as simple as shell scripting, but I m not restricted to that. Will write a ...

Configuring kernel

After create a new system call, how to update the kernel? I tried these lines, make-kpkg clean fakeroot make-kpkg -initrd -append-to-version=-custom kernel_image kernel_headers But Ubuntu asked me ...

save Exceptions to file in python

I want to save all following Exceptions in a file. The reason why I need this is because the IDLE for python 3.1.1 in Ubuntu raises an Exception at calltipps, but close to fast, that it isn t readble. ...

How can i monitor system statistics in kubuntu using Java?

i am doing a project related to configuration and memory analyzer for kubuntu. i want to display the system statistics information like CPU usage, RAM usage and proceses etc. graphically using an ...

How to pass "--external-locking" for mysqld in Ubuntu

I would like to start my mysql server with the --external-locking option. As mysqld is run by the /etc/init.d/mysql script ubuntu (karmic), I guess that s where I should set this "--external-locking" ...

"g++" and "c++" compiler

I just found on my Ubuntu, there are two different C++ compilers: /usr/bin/g++ and /usr/bin/c++. I am not familiar with the latter, but man c++ just jumps to the manpage of gcc. I wonder what is their ...

热门标签