Git Client
Every Git repository is complete, self-contained, and independent. It contains its own private copy of a project’s files and history. A cloned repository remembers the location of the repository it was cloned from, but it does not communicate with that repository, or any other, unless you tell it to.
Fore more information about Git see the official site.
1. Git command line client
On a Linux system if/once the git client is installed open a terminal and type git --help
.
2. TortoiseGit
You can use TortoiseGit for Windows PCs. The tool will be fully integrated in the Windows explorer.
3. Eclipse
- Donwload Eclipse IDE for PHP Developers + PDT + EGit
- "Help"->"Install New Software..."
- Name: PHP Development Tools (PDT)
- URL:
https://download.eclipse.org/tools/pdt/updates/latest/
- PDT
- URL:
- Name: PHP Development Tools (PDT)
3.1. remarks
- Unpack the Eclipse package in
opt/
and create a starter for your desktop-
sudo tar -zxvf eclipse-php-2024-06-R-linux-gtk-x86_64.tar.gz -C /opt/
-
- Line endings: Please enforce LF
- Since Eclipse uses the platform’s line ending by default, source code written on Unix / Mac OS will use line feeds (LF), whereas Windows installations of Eclipse produce carriage returns AND line feeds (CRLF).
- Go to the preferences and select General -> Workspace. The New text file line delimiter determines which line ending is used for newly created files.
- missing spell checker in Eclipse for PHP Developers: Installing JDT in Eclipse fixes the problem (the spell checking functionality is bundled with the JDT)
- Setting the encoding per file via Edit -> Set Encodings... or per project Properties -> Resource and type or choose
- Unicode
UTF-8
(project default)
- Unicode
- https://github.com/eclipse/pdt
- SonarLint
4. KDevelop
5. NetBeans
6. MGit
https://github.com/maks/MGit - Android