Difference between revisions of "GIT"

From FusionPBX
Jump to: navigation, search
(Moving your server from SVN to GIT)
Line 2: Line 2:
  
 
==Move config.php and config.lua==
 
==Move config.php and config.lua==
  Save config.php to a safer location
+
Save config.php to a safer location
  Check if /etc/fusionpbx exists if it does not then create it
+
Check if /etc/fusionpbx exists if it does not then create it
  mkdir /etc/fusionpbx
+
mkdir /etc/fusionpbx
  mv /var/www/fusionpbx/resources/config.php /etc/fusionpbx
+
mv /var/www/fusionpbx/resources/config.php /etc/fusionpbx
  mv /usr/local/freeswitch/scripts/resources/config.lua /etc/fusionpbx
+
mv /usr/local/freeswitch/scripts/resources/config.lua /etc/fusionpbx
  
 
==Moving your server from SVN to GIT==
 
==Moving your server from SVN to GIT==
  cd /var/www/
+
cd /var/www/
  mv fusionpbx fusionpbx-svn
+
mv fusionpbx fusionpbx-svn
  git clone https://github.com/fusionpbx/fusionpbx.git
+
git clone https://github.com/fusionpbx/fusionpbx.git
  
 
==Additional Notes==
 
==Additional Notes==
* Check here for more info https://github.com/fusionpbx/fusionpbx/blob/master/README.md
+
* Check here for more info https://github.com/fusionpbx/fusionpbx
 +
* Location to submit issues or view bug reports https://github.com/fusionpbx/fusionpbx/issues?q=is%3Aopen+is%3Aissue
 
* https://help.github.com/
 
* https://help.github.com/
* Location to submit issues or view bug reports https://github.com/fusionpbx/fusionpbx/issues?q=is%3Aopen+is%3Aissue
 

Revision as of 14:37, 6 July 2015


Move config.php and config.lua

Save config.php to a safer location
Check if /etc/fusionpbx exists if it does not then create it
mkdir /etc/fusionpbx
mv /var/www/fusionpbx/resources/config.php /etc/fusionpbx
mv /usr/local/freeswitch/scripts/resources/config.lua /etc/fusionpbx

Moving your server from SVN to GIT

cd /var/www/
mv fusionpbx fusionpbx-svn
git clone https://github.com/fusionpbx/fusionpbx.git

Additional Notes