diff --git a/language-core/11-developing-julia-packages.md b/language-core/11-developing-julia-packages.md index e3c24ea..e4ea0cc 100644 --- a/language-core/11-developing-julia-packages.md +++ b/language-core/11-developing-julia-packages.md @@ -146,7 +146,7 @@ git add . # Add all files, including in subfolders git commit -a -m "Initial package structure of MyAwasomePackage" # Create a first commit git branch -m main # Rename "master" to "main" as of the new GitHub policy git remote add origin git@github.com:sylvaticus/MyAwesomePackage.jl.git # Link the remote github repository to the local one -git config pull.rebase false # Allow mering of remote vs local codebase for next step +git config pull.rebase false # Allow merging of remote vs local codebase for next step git pull origin main --allow-unrelated-histories # Fetch the Readme and gitignore we created when we created the repository git push --set-upstream origin main # Finally upload everything back to the GitHub repository ```