Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
howtos:testing_git [2017/04/30 14:51] – libvte-dev vfaronovhowtos:testing_git [2017/07/09 01:12] – git config may be necessary for merging vfaronov
Line 10: Line 10:
  
 <code> <code>
-$ sudo apt install build-essential git libgtk2.0-dev libvte-dev+$ sudo apt install build-essential autoconf automake libtool intltool git libgtk2.0-dev libvte-dev
 </code> </code>
  
 **TODO: equivalents for Fedora etc.** **TODO: equivalents for Fedora etc.**
 +
 +If you've never used Git before, you may need to set it up with your name and email (the values you enter don't matter for this tutorial):
 +
 +<code>
 +$ git config --global user.name "Your Name"
 +$ git config --global user.email your.email@example.com
 +</code>
  
 It may be convenient to create a dedicated directory for testing Geany. This tutorial will use ''~/geany'': It may be convenient to create a dedicated directory for testing Geany. This tutorial will use ''~/geany'':
Line 131: Line 138:
 $ make install $ make install
 </code> </code>
 +
 +===== Plugins =====
 +
 +**TODO: how to install Geany-Plugins from Git as well**
  
 ===== Running on a regular basis ===== ===== Running on a regular basis =====
Print/export