local additions
This commit is contained in:
@@ -5,13 +5,15 @@
|
|||||||
|
|
||||||
**appimage :**
|
**appimage :**
|
||||||
**chmod +x <name>.appimage** make it executable
|
**chmod +x <name>.appimage** make it executable
|
||||||
|
(optional) **mv path/Nextcloud-xx.Appimage ~/.local/bin/nextcloud**
|
||||||
**sudo vim /usr/share/applications/<name>.desktop** create a file.desktop with content :
|
**sudo vim /usr/share/applications/<name>.desktop** create a file.desktop with content :
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Exec=/absolute/path/to/file/<name>.AppImage
|
Exec=/absolute/path/to/file/<name><.ext>
|
||||||
Name=<name>
|
Name=<name>
|
||||||
Type=Application
|
Type=Application
|
||||||
**( cd /usr/share/applications && chmod 644 <name>.desktop )** maybe change permissions
|
**( cd /usr/share/applications && chmod 644 <name>.desktop )** maybe change permissions
|
||||||
|
|
||||||
|
|
||||||
**firefox extension source code :**
|
**firefox extension source code :**
|
||||||
**right click on install** and select "copy link"
|
**right click on install** and select "copy link"
|
||||||
**curl -L <link> > /tmp/myextension.xpi** download the extension with curl inside a tmp file
|
**curl -L <link> > /tmp/myextension.xpi** download the extension with curl inside a tmp file
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
**git branch** lists all a git project's branches
|
**git branch** lists all a git project's branches
|
||||||
**git branch branch_name** creates a new branch
|
**git branch branch_name** creates a new branch
|
||||||
**git checkout branch_name** to switch from one branch to another
|
**git checkout branch_name** to switch from one branch to another
|
||||||
**git checkout -b branch-name** create and switch to new branch
|
**git checkout -b <branch-name>** create and switch to new branch
|
||||||
**git log** shows a list of all previous commits
|
**git log** shows a list of all previous commits
|
||||||
**git log --summary** show more informations
|
**git log --summary** show more informations
|
||||||
**git merge branch_name** join file changes from branch_name into current branch
|
**git merge branch_name** join file changes from branch_name into current branch
|
||||||
|
|||||||
Reference in New Issue
Block a user