Skip to content

Commit f84b246

Browse files
committed
updating notes
1 parent 9832ceb commit f84b246

File tree

13 files changed

+22
-0
lines changed

13 files changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Issue - "ssh-key-permissions-0644-for-id-rsa-pub-are-too-open"
2+
3+
After running below command I got the above error - and in this case I can not Push anything to Github and Git will completely ignore too-open-permission-ed rsa key
4+
5+
`ssh-add ~/.ssh/id_rsa`
6+
7+
To Add your SSH private key to the ssh-agent. If you created your key with a different name, or if you are adding an existing key that has a different name, replace id_ed25519 in the command with the name of your private key file.
8+
9+
10+
#### Solution
11+
12+
https://stackoverflow.com/a/37779390/1902852
13+
14+
```
15+
chmod 400 ~/.ssh/id_rsa
16+
```

Git-and-Github/large-file-upload.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### IMPORTANT - Monthly bandwidth quota IS ONLY 1 GB.
2+
3+
Every account using Git Large File Storage receives 1 GB of free storage and 1 GB a month of free bandwidth.
4+
5+
---
6+
17
### Install and upload
28

39
**Note, max size in normal github is only 100mb per file**
File renamed without changes.

0 commit comments

Comments
 (0)