dimanche 13 décembre 2015

Git

Open Source

Tutorials en cours :


Git

  • Help

$git help
$git help commit //help for commit command

  • Start configuration of git :

$git config --global user.name 'name'
$git config --global user.email 'name@email.com'

$git config user.name
name
$git config user.email
name@email.com

$git config list //list all the config items

  • Start configuration of git :
//inside the repository of the project

$git init

  • Commit

$git add . //add to track all
$git commit -m 'my message' //commit new file

$git log //see all the commits
$git log --author=''name''//see all the commits from author

$git status


Aucun commentaire:

Enregistrer un commentaire