Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 342 Bytes

git-command.md

File metadata and controls

19 lines (14 loc) · 342 Bytes
# Hit git initialization
git init

# Put your username
git config user.name "someone"

# Put detail of your github email
git config user.email "[email protected]"

# Add the files you have edited/added
git add *

# Write detail message of your commited code
git commit -m "some init msg"

# Push to your repository
git push