Bonjour.

Pour mes premiers pas avec git, je n'arrive pas à pusher mon projet qui est en local pour le moment.
J'ai refait les commandes indiquées et vous livre les retours des différentes commandes que m'invite à faire github pour pusher mon projet.
Code git : Sélectionner tout - Visualiser dans une fenêtre à part
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
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git log
commit f371bcfe00d97601e9a8702ece2b260036023adf (HEAD -> master)
Author: hary66 <bartibox-space@yahoo.fr>
Date:   Tue Jul 3 16:38:17 2018 +0200

    initial commit
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ giti commit -m "Rajout de README.md"
bash: giti: commande inconnue...
Commande similaire*: 'git'
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git commit -m "Rajout de README.md"
[master 5ca4153] Rajout de README.md
 1 file changed, 1 insertion(+)
 create mode 100644 README.md
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git status
Sur la branche master
rien à valider, la copie de travail est propre
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git remote add origin https://github.com/hary66/Curing.git
fatal: la distante origin existe déjà.
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git push -u origin master
remote: Not Found
fatal: repository 'https://github.com/hary66/' not found
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ clear

[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git log
commit 5ca41539692dd18e253499654c717661c3d94d15 (HEAD -> master)
Author: hary66 <bartibox-space@yahoo.fr>
Date:   Wed Jul 4 09:01:13 2018 +0200

    Rajout de README.md

commit f371bcfe00d97601e9a8702ece2b260036023adf
Author: hary66 <bartibox-space@yahoo.fr>
Date:   Tue Jul 3 16:38:17 2018 +0200

    initial commit
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git status
Sur la branche master
rien à valider, la copie de travail est propre
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git remote add origin https://github.com/hary66/Curing.git
fatal: la distante origin existe déjà.
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$ git push -u origin master
remote: Not Found
fatal: repository 'https://github.com/hary66/' not found
[harold@harold nano_MCP4725_MAX31855_pid_29_06_18]$