Skip to content

MRCardoso/git-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

161 Commits
 
 
 
 

Repository files navigation

Basic commands

Name Command
config user git config --global user.name "your-username"
config email git config --global user.email "your-email"
list config git config --list
show current branch git branch --show-current
who last modified each line git blame
Count file changes git status

Three stages

Stage Action
modifying files work directory
staged area git add
local repository git commit

list of the schema of the permissions for the files

Permission Binary Decimal
--- 000 0
--x 001 1
-w- 010 2
-wx 011 3
r-- 100 4
r-x 101 5
rw- 110 6
rwx 111 7
---------- ------ -------

Topics

See documentation

view...

###Thanks code.education for this knowledge acquired!

About

Basic tutorial. for learn the basic command with git

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors