]> git.piffa.net Git - arduino/commitdiff
CLI GIT
authorAndrea Manni <andrea@piffa.net>
Tue, 30 May 2017 15:13:17 +0000 (17:13 +0200)
committerAndrea Manni <andrea@piffa.net>
Tue, 30 May 2017 15:13:17 +0000 (17:13 +0200)
lezioni/cli.rst [new file with mode: 0644]
lezioni/git_traccia.rst [new file with mode: 0644]
lezioni/lezioni
schemi/millis_bb.png [new file with mode: 0644]

diff --git a/lezioni/cli.rst b/lezioni/cli.rst
new file mode 100644 (file)
index 0000000..a909abd
--- /dev/null
@@ -0,0 +1,56 @@
+CLI
+*********
+
+* Terminale: sintassi comandi, uso degli spazi
+  whoami, pwd, date
+
+* --help, man, flags  oggetti 
+* Uso di tab
+* hystory -c 
+
+
+Shortcuts
+----------
+
+- frecce di scorrimento per history
+- CTRL A
+- CTRL e
+- ALT B word / CTRL B
+- CTRL B
+
+* CTRL U
+  kill all left of
+* CTRL k
+  kill all right of
+
+* \`.  last object
+* ~.  kill ssh
+
+Streams
+----------
+- http://ryanstutorials.net/linuxtutorial/piping.php
+
+STDRIN , STDROUT, STRDERR
+* redirection on files >, >>, 
+
+  Handle    Name    Description
+  0 stdin   Standard input
+  1 stdout  Standard output
+  2 stderr  Standard error
+
+Redirecting the standard error (stderr) and stdout to file
+command-name &>file
+
+Pipes
+===========
+
+* wc -l
+* head
+* tail
+
+
+Editor
+--------
+
+* Pager: more
+* Vim or nano
diff --git a/lezioni/git_traccia.rst b/lezioni/git_traccia.rst
new file mode 100644 (file)
index 0000000..072096c
--- /dev/null
@@ -0,0 +1,43 @@
+Patch
+========
+
+Diff sorgente dest
+Diff normale e' in informatico,
+
+Show diff -c
+  Context
+  https://www.computerhope.com/unix/udiff.htm
+
+Show diff with kompare
+    kompare source diff
+
+With Git:
+
+    git difftool
+    git diff --cached
+        allready added
+
+    git config  diff.tool "kompare"
+
+
+
+Archivi
+------------
+
+Diff si puo' applicare anche a directories  
+    -q show only files
+    -r recursivo
+
+
+Notebook
+-----------
+
+-requirements:
+- muoversi nel filesystem
+- comandi
+- pager / editor di testo
+
+- git book
+$ git config  user.name "John Doe"
+$ git config  user.email johndoe@example.com
+git config --list
index 318b62be8f67900c7aad8418e82fd6ee5c163487..0a809733a7c295a2f0ff0de477b6cc141082800a 100644 (file)
@@ -50,7 +50,7 @@ Analogico
 
 Status: ci stiamo preparando all'uso dei potenziometri per input anaogici - output analogici. Serve sapere un po' di bit/byte per BYTE / INT e ragionare sulle resistenze (conduttivita') per capire come funziona un potenziometro.
 
-- Operatori binari basi
+- Operatori binari base
 
 Tipi di dati: bit e int e long, signed and unsigned, long
 - http://www.ladyada.net/learn/arduino/lesson4.html
diff --git a/schemi/millis_bb.png b/schemi/millis_bb.png
new file mode 100644 (file)
index 0000000..3461a7e
Binary files /dev/null and b/schemi/millis_bb.png differ