1

I want to use git for my sites. So I understand that I have to use SSH and initialize git in the folder. But I can't find those files and want to know what is the path for those files?

SwissCodeMen
  • 4,222
  • 8
  • 24
  • 34
Vishal Kamlapure
  • 590
  • 4
  • 16

1 Answers1

1

something I found, If you have PHP then you can use this to get absolute path

<?php
$path = getcwd();
echo "This Is Your Absolute Path: ";
echo $path;
?>

example :- /home/user/public_html/test/test.php.

refrence :- Check this

Vishal Kamlapure
  • 590
  • 4
  • 16