diff --git a/community/howto/EricZimmerman/BackupConfigToGithub.md b/community/howto/EricZimmerman/BackupConfigToGithub.md index c1598a04..c9dc3d62 100644 --- a/community/howto/EricZimmerman/BackupConfigToGithub.md +++ b/community/howto/EricZimmerman/BackupConfigToGithub.md @@ -39,7 +39,11 @@ Experience is just a series of past mistakes we try to not make anymore. Remembe 1. If you plan on having more than one printer some day, use a repository name that is specific to that printer 2. Description is optional, but nice to have, especially for other people that may reference your config 3. Public or Private is up to you. - 4. License is optional too, but best to specify something. I usually do MIT for all my stuff, but your mileage may vary + 4. Select the following options under "Initialize this repository with": + 1. Make sure "Add a README file" is unchecked. + 2. Select "None" for .gitignore template. + 3. Select "None" for the license. + The license is optional, but after your backup is working you should add one. I usually do MIT for all my stuff, but your mileage may vary. ![New repository details](images/backup/newRepoDetails.png) @@ -181,7 +185,7 @@ We can now put the pieces together we have created so far. To make this easier, 4. If this is your first time setting up git on your printer you may need to set your user and email details for git to use later. *if you don't do it now it will prompt you later ;)* - ``` + ```bash git config --global user.email "your@email.com" git config --global user.name "your name" ``` diff --git a/community/howto/EricZimmerman/images/backup/newRepoDetails.png b/community/howto/EricZimmerman/images/backup/newRepoDetails.png index 1ad57cc1..3484a0d6 100644 Binary files a/community/howto/EricZimmerman/images/backup/newRepoDetails.png and b/community/howto/EricZimmerman/images/backup/newRepoDetails.png differ