News

  • by David Raleche
    For those seeking to create an alias of Python on a MAC operating system, the creation of such an alias may be achieved through the execution of a designated command line. The command line in question may be articulated as: alias python=/usr/bin/python3 The post How to create an alias of Python on a MAC ? […]
  • by David Raleche
    SOLUTION (n review files to be deleted) git clean -fdxn This will remove all local untracked files, so only git tracked files remain:git clean -fdx WARNING: -x will also remove all ignored files, including ones specified by .gitignore! You may want to use -n for preview of files to be deleted. The post How to git remove uncommitted filed ? git reset […]
  • by David Raleche
    The post How to SSH into Docker container ? appeared first on David Raleche.
  • by David Raleche
    SOLUTION CREATE FILE / GO TO ==> .env add Problem when trying to run DOCKER The post WARN[0000] The “PHP_VERSION” variable is not set. Defaulting to a blank string. appeared first on David Raleche.
  • by David Raleche
    Here is the command git log -p -c or git log -p –cc The post How to see files that have been resolved with GIT ? appeared first on David Raleche.