Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 610 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 610 Bytes

learning-git

I'm leaning from Amigoscode.

Somme git commande

To set up and configure your working directory.

  • $ git config --global user.name "your git name"
  • $ git config --global user.email "your email"
  • $ git config --global color.ui auto

Now your could start

Add new file in the area stage

$ git add -A

Delete file on the area

$ git rm -r filename

To see area status


$ git status

Commit to the local remote


$ git commit -m "a message of the commit"