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


3.1. remarks

  • Unpack the Eclipse package in opt/ and create a starter for your desktop
    • sudo tar -zxvf eclipse-php-2023-12-R-linux-gtk-x86_64.tar.gz -C /opt/
  • Line endings: Please enforce LF
    1. 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).
    2. 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)
  • https://github.com/eclipse/pdt
  • SonarLint

4. KDevelop

https://www.kdevelop.org/

5. NetBeans

https://netbeans.apache.org/

6. MGit

https://github.com/maks/MGit - Android

7. More

GUI Clients


Comments