What is git?
The distributed version tools. Used most to development of software
Command for init repository:
git init
Command for configure name and email of user in git on repository:
git config user.name "username"
git config user.email "email"
Command for verify repository status:
git status
Command for monitore the files or confirm changes the files monitored to the git:
git add .
or
git add --all
Command for list branchs:
git branch -d branch_name
Command for see commit histories:
git log
Command to send changes to remove repository:
git push url_repository_remove_or_alias branch_name
Command for delete remote repository:
git push --delete url_repository_remove_or_alias branch_name
Command for dowload changes remote repository:
git pull url_repository_remove_or_alias branch_name
Top comments (0)