An EKF implementation for robotics
- Visit https://git-scm.com/docs/gitignore for pointers on how to add to the .gitignore file. Everything in this file will be ignored when committing new changes.
git status
shows the changesgit add <file>
stages certain files for commit.git add .
stages all changes for commitgit commit -m "insert comment here"
creates a "snapshot of the code"git log
shows all "snapshots" under the current branch. To visit a snapshot, usegit checkout <hashvalue>
git branch
lists all branches currently on your system.git branch <branch-name>
creates a branch with the name specified. To switch to a branch, usegit checkout <branch-name>
git merge <branch-name>
combines your current branch with the specified branch.
git pull
will get the latest updates, of your current brnach, from github.git fetch origin <branch>
will create a local copy of a new branch from github
git push -u origin <branch>
will upload a new local branch to githubgit push
will be used to push subsequent snapshots
Reference this link while coding: https://github.com/wmlynar/extended-kalman-filter/tree/master/src/main/java/com/github/wmlynar/ekf