Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

Ormly/dJBox-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

147 Commits
 
 
 
 
 
 
 
 

Repository files navigation

dJBox

Today is tomorrow (Quantom machine learning at your doorstep)

git quick guide

First time ever?

  1. Install git!
  2. Clone the repository
git clone https://github.com/Ormly/dJBox-server.git
  1. enter the working directory
cd dJBox-server

Want to start to write some code?

  1. Make sure you have the most recent version of the code
git pull
  1. Create your own branch
git checkout -b feature/new_branch_desctiptive_name
  1. Write code like crazy

Ready to share with the world?

  1. Commit your work
git commit -m -a "short comment describing what changed since the last commit"
  • git commit is local, you may do that as often as you wish. Usualy when you're finished writing some part of the feature, and you're happy with it but the feature is not yet done.
  • Try to commit often. Small commits are easier to review and manage.
  1. Push to remote branch
git push origin feature/new_branch_desctiptive_name

this will create a new branch on the server with your commited work

  1. When you're ready, open a pull request on github requesting to merge your branch into master.

Ready to work on the next feature?

Make sure you're back on the master branch, and that you pulled all changes before making another new one

git checkout master
git pull

About

1.0 Project in the making

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 6

Languages