Home > TeleKarma

TeleKarma

TeleKarma is a project mainly written in C++ and C, it's free.

Anti-IVR

Suggested work flow:

  1. Create a new branch: git branch new_branch

  2. Switch to the new branch: git checkout new_branch

  3. Edit code: vim code.cxx

  4. Commit changes: git commit -a

or

git commit code.cxx

  1. If you want to keep editing goto step 3.

  2. If you are ready to push your changes to the server goto step 7.

  3. Switch back to the master branch: git checkout master

  4. Update your master branch: git pull origin master

  5. Switch to your new branch: git checkout new_branch

  6. Update your new branch: git rebase master make merge changes if necessary

  7. Pull your new branch into your local master: git checkout master git pull . new_branch

  8. Push your changes to the server: git push origin master:master