-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApuntes.txt
More file actions
48 lines (34 loc) · 1.52 KB
/
Apuntes.txt
File metadata and controls
48 lines (34 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Curso Python 201701:
--------------------
Jupyter:
--------
indobits@L-LAP:~$ jupyter notebook --port 9999
Git:
----
indobits@L-LAP:~$ mkdir -p "Dropbox/Python 201701" && cd "Dropbox/Python 201701"
indobits@L-LAP:~/Dropbox/Python 201701$ echo "oli boli" > README.md
indobits@L-LAP:~/Dropbox/Python 201701$ git init
Initialized empty Git repository in /home/indobits/Dropbox/Python 201701/.git/
indobits@L-LAP:~/Dropbox/Python 201701$ git status
indobits@L-LAP:~/Dropbox/Python 201701$ git add .
indobits@L-LAP:~/Dropbox/Python 201701$ git commit -m "First commit"
[master (root-commit) b74ac6b] First commit
3 files changed, 122 insertions(+)
create mode 100644 1 Introduccion.ipynb
create mode 100644 Apuntes.txt
create mode 100644 README.md
indobits@L-LAP:~/Dropbox/Python 201701$ git remote add origin https://github.com/indobits/python_201701.git
indobits@L-LAP:~/Dropbox/Python 201701$ git remote -v
origin https://github.com/indobits/python_201701.git (fetch)
origin https://github.com/indobits/python_201701.git (push)
indobits@L-LAP:~/Dropbox/Python 201701$ git push -u origin master
Username for 'https://github.com': indobits
Password for 'https://indobits@github.com': drogas
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 1.20 KiB | 0 bytes/s, done.
Total 5 (delta 0), reused 0 (delta 0)
To https://github.com/indobits/python_201701.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.