-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst_commit.txt
More file actions
31 lines (27 loc) · 1.46 KB
/
Copy pathfirst_commit.txt
File metadata and controls
31 lines (27 loc) · 1.46 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
adelinegraciani@Adelines-MacBook-Pro class-repos % git init
Initialized empty Git repository in /Users/adelinegraciani/Desktop/class-repos/.git/
adelinegraciani@Adelines-MacBook-Pro class-repos % git remote add origin [email protected]:8deline/Class-repos.git
adelinegraciani@Adelines-MacBook-Pro class-repos % git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
first_commit.txt
nothing added to commit but untracked files present (use "git add" to track)
adelinegraciani@Adelines-MacBook-Pro class-repos % git add .
adelinegraciani@Adelines-MacBook-Pro class-repos % git commit -m "my commit"
[master (root-commit) d703a70] my commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 first_commit.txt
adelinegraciani@Adelines-MacBook-Pro class-repos % git push origin master
The authenticity of host 'github.com (52.74.223.119)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com,52.74.223.119' (RSA) to the list of known hosts.
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 213 bytes | 213.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
To github.com:8deline/Class-repos.git
* [new branch] master -> master
adelinegraciani@Adelines-MacBook-Pro class-repos %