1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 03:20:00 +03:00

Update Development.md

From discussion in #8558
This commit is contained in:
Kyle Kienapfel 2019-07-10 20:48:42 -07:00 committed by GitHub
parent 07621912d2
commit f57128e7c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,3 +107,15 @@ Later, you can get the changes from the betaflight repo into your `master` branc
5. `git push origin master` is an optional step that will update your fork on github
You can also perform the git commands using the git client inside Eclipse. Refer to the Eclipse git manual.
### IDEs and .gitignore
The projects [.gitignore](/.gitignore) already ignores certain artifacts from some IDEs, but if you'd like to use something else, you can set up git to ignore the necessary files at a global level (all git projects on the computer)
It is always good to check that you haven't done this already: `git config --global --get core.excludesfile`
For Linux/BSD/OSX: `git config --global core.excludesfile '~/.gitignore'`
For Windows: `git config --global core.excludesfile '%USERPROFILE%\.gitignore'`
When you `git config --global --get core.excludesfile` a second time, you should get a file location back.