LP Devs Blog

Command line

  • March 31, 2017

    How to use git with some basic commands

    Basic commands Init: create a new repository git init Clone: clone a repository Clone a repository in local: git clone /path/to/repository/ Clone a repository in server: git clone username@serve...

  • March 23, 2017

    Some commands for MongoDB

    MongoDB Commands Create or switch to a database: use DATABASE_NAME Check currently selected database: db Check database lists: show dbs Drop database: db.dropDatabase() Create collection: db.createCollec...